If you want to use align the content and its elements into the center, you use CSS property called flex
and using align-items:center
and justify-content:center
.
Here is more about flex Link
.container {
height: 300px;
display: flex;
text-align: center;
border: 1px solid black;
align-items:center;
justify-content:center;
}
.container>div {
border:1px solid red;
height:50px;
display: flex;
align-items:center;
justify-content:center;
padding:10px;
}
<div class="container">
<div>I'm vertically/horizontally centered!</div>
</div>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…