gpt4 book ai didi

css - 为什么 'top: 50%' 不起作用?

转载 作者:太空宇宙 更新时间:2023-11-03 19:53:14 25 4
gpt4 key购买 nike

我想要页面中央的加载动画。这是<div id="loading">的样式

#loading{
position: absolute;
top: 50%;
left: 50%;
}

但它不在中心,我不知道为什么。 This是加载的 jsfiddle 页面。谁能帮帮我?

最佳答案

#loading{
position: absolute;
top: 50%;
left: 50%;
margin-top: -25px; /* half of your element's height */
margin-left: -25px; /* half of your element's width */
}

DEMO

您可能想阅读更多关于 vertical centering techniques 的内容(在你的情况下是方法 2)

关于css - 为什么 'top: 50%' 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12217332/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com