而 margin: 0 auto;可以使div水平居中,margin: auto auto;未按预期垂直对齐。另外,垂直对齐:中间;对于块级元素无效。
一种可行的解决方法是嵌套三个元素:
.container { display: table; height: 100%; position: absolute; overflow: hidden; width: 100%; } .helper { position: absolute; top: 50%; display: table-cell; vertical-align: middle; } .content { position: relative; top: -50%; margin: 0 auto; width: 200px; border: 1px solid orange; }
<div class="container"> <div class="helper"> <div class="content"> <p>stuff</p> </div> </div> </div>
在此解决方案中:
以上是为什么 `margin: auto auto;` 不垂直居中 Div?的详细内容。更多信息请关注PHP中文网其他相关文章!