水平垂直居中是前端的痛,也是前端__永恒__话题,这次记录一个用display:flex实现的方法:
###html###
<div class="flex">
<p>content content</p>
</div>
###css###
.flex{
display:flex;
width:600px;
height:600px;
background-color:#333;
}
.flex p{
margin:auto;
}
JS Bin<script src="http://static.jsbin.com/js/embed.js"></script>
666