如何使div的层设置在网页中间,随屏幕变化而变化,求详解。

2025-01-06 02:47:51
推荐回答(3个)
回答1:

横向居中:
body{text-align:center;}
.mydiv{
margin:0 auto;
width:200px;
}

自己加个背景色看看效果


横竖都要居中的话,看这个回答,懒得去复制了:
http://zhidao.baidu.com/question/303881671.html

回答2:

.pop_box{
width:440px;
height:300px;
border:1px solid #8d2424;
background-color:#c3c3c3;
position:fixed;
top:50%;
left:50%;
margin:-150px auto auto -220px;
_position:absolute; /* for IE6 */ _top: expression(documentElement.scrollTop +(documentElement.clientHeight)/2);
z-index:1000; }

回答3:

.pop_box{
width:440px;
height:300px;
margin:0 auto 0 auto;
}