gpt4 book ai didi

html - 将这个 div 居中

转载 作者:太空宇宙 更新时间:2023-11-04 12:12:11 26 4
gpt4 key购买 nike

我已经研究这段代码好几个小时了,但没有得到任何建议。

最初我想,“嘿,做一张 table 并垂直变换那 block ……”但显然,要么我是个做错了的白痴要么..是的,我只是一个白痴。

<html>
<head>
<style type='text/css'>
html, body{
margin:0;
padding:0;
display:table;
}
#centerme{
display:table-cell;
vertical-align: middle;
height:100px;
width:100px;
}
</style>
</head>
<body>
<div id='centerme'></div>
</body>
</html>

我觉得好像这个 html 中缺少了一些危险的东西。

我没有使用 CSS3 或任何 CSS 的第 3 方库_并非适用于所有浏览器

position: relative;
top: 50%;
transform: translateY(-50%);

最佳答案

如果你想要水平垂直对齐,试试这个:

html, body {
margin:0;
padding:0;
}
#centerme {
height:100px;
width:100px;
border:1px solid #999;
position:absolute;
margin:auto;
top:0;
right:0;
bottom:0;
left:0;
}
<div id='centerme'>center</div>

关于html - 将这个 div 居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28969079/

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