gpt4 book ai didi

css - 使用CSS在页面中间居中一个div框

转载 作者:技术小花猫 更新时间:2023-10-29 11:07:01 29 4
gpt4 key购买 nike

我想将一个 div 居中放置在页面中间,我尝试了 top:30%,但是当窗口调整大小时偏离了对齐方式。

<div id=cent></div>

谢谢让

最佳答案

如果您知道该 div 的高度/宽度(例如,它将是 100px X 200px),那么您可以这样做:

#cent {
position:absolute;
top:50%;
left:50%;
margin-top:-50px; /* this is half the height of your div*/
margin-left:-100px; /*this is half of width of your div*/
}

更新:另一种选择:参见 http://www.w3.org/Style/Examples/007/center (垂直居中)

关于css - 使用CSS在页面中间居中一个div框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2498003/

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