是DIV垂直居中还是DIV里的内容垂中,如果是DIV的话代看个例子:
<html>
<head>
<style style="text/css">
#div1
{
position: absolute;
width:100px;
height:50px;
left:50%;
top:50%;
margin-left:-50px;
margin-top:-25px;
border:1px solid #000
}
</style>
</head>
<body>
<div id="div1">我居中了吗?</div>
</body>
</html>
路过,不太懂,学习下
先设置一下 width 然后 margin:0px auto; 不就行了
楼主,其实在小屏幕点的电脑这种方法就行不通了