这个垂直居中什么意思不太理解啊
垂直居中-父元素高度确定的多行文本
垂直居中-父元素高度确定的多行文本
2016-05-16
这样就能水平、垂直都居中了
<style>
.wrap h2{
margin:0;
height:100px;
line-height:100px;
background:#ccc;
padding-right:36px;
padding-left:36px;
}
.wrap{
float:left;
position:relative;
left:50%;
}
.wrap-center{
position:relative;
left:-50%;
</style>
</head>
<body>
<div class="wrap">
<h2 class="wrap-center">hi,imooc!</h2>
</div>
</body>举报