我尝试使用flexbox方法,表格方法和其他一些方法来垂直居中一个未知高度的div,但是我的div没有正确居中。我希望居中div的宽度为窗口宽度的50%或者最小宽度为200px。
.content {
background-color: violet;
min-width: 200px;
width: 50%;
margin-left: auto;
margin-right: auto;
box-shadow: 0px 1px 7px 1px rgba(0, 0, 0, 1);
}
.outer-container {
display: table;
width: 100%;
background-color: violet;
}
.container {
display: table-cell;
text-align: center;
vertical-align: middle;
}
<body>
<div class="outer-container">
<div class="container">
<div class="content">
<div class="title-class">
Hello there
</div>
</div>
</div>
</div>
</body>
答案 0 :(得分:5)
使用flexbox,这里是您需要的所有代码:
<强> HTML 强>
<div class="container">
<div class="content">
<div class="title-class">Hello there</div>
</div>
</div>
<强> CSS 强>
html, body { height: 100%; }
.container {
display: flex;
justify-content: center;
align-items: center;
background-color: violet;
height: 100%;
}
.content {
background-color: violet;
width: 50%;
text-align: center;
box-shadow: 0px 1px 7px 1px rgba(0, 0, 0, 1);
}
作为替代方案,这里是表格方法: