如果有下列代码:
<div class="wrapper">
hello world
</div>
想让hello world在wrapper类中垂直居中,可以为wrapper中添加如下CSS:
.wrapper:after {
display:inline-block;
width:0;
height:100%;
vertical-align:middle;
content:"";
}
转载于:https://www.cnblogs.com/joesbell/p/6122990.html