gpt4 book ai didi

html - 将 div 对齐到页面中心,而它的位置是绝对的?

转载 作者:太空狗 更新时间:2023-10-29 13:33:11 24 4
gpt4 key购买 nike

positionabsolute 时,如何将 DIV align 到我页面的中心?如果可能使用javascript。

最佳答案

UPDATE: This is an old answer and the answer currently just below this gives a nicer solution which works even if your div has dynamic width. Another alternative, using margin: auto, can be found here, on a different, but related, question.

如果您知道要居中的 DIV 的宽度,您可以执行此操作。

CSS:

div
{
position: absolute;
top: 50%;
left: 50%;
width: 400px;
height: 300px;
margin-top: -150px;
margin-left: -200px;
}

您将左上角放在中心,然后使用宽度的一半的负边距将其居中。

关于html - 将 div 对齐到页面中心,而它的位置是绝对的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5132323/

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