标签:relative style 一半 垂直居中 color class osi 定位 状态
<div class="div">
<h2>我处于垂直居中状态</h2>
</div>
<style>
.div{position:relative:}
.div h2{position:absolute;left:50%; top:50%; margin-left:-50px; margin-top:-50px;}
</style>
注:
margin-left,margin-top的值都是h2自身宽高的一半的负值。
标签:relative style 一半 垂直居中 color class osi 定位 状态
原文地址:http://www.cnblogs.com/zxhh/p/6866609.html