怎么让一个不知道固定大小的DIV在浏览器窗口上下左右都居中显示
2个回答
展开全部
html代码:
<div class="div1">
<div class="div2">自适应浏览器水平垂直居中</div>
</div>
css代码:
.div1{
width: auto;
height: 600px;
background: #cccccc;
position: relative;
}
.div2{
position: absolute;
left: 50%;
top: 50%;
margin-left: -600px;
margin-top: -200px;
width: 1200px;
height: 400px;
background: #4fcc8d;
line-height: 400px;
font-size: 36px;
text-align: center;
}
原理就是,先用 left:50%; top:50%; 让这个 div 的左上角位于页面正中。然后再利用 margin-left:-600px;margin-top:-200px;使div向左向上移动它自身宽高的一半。
<div class="div1">
<div class="div2">自适应浏览器水平垂直居中</div>
</div>
css代码:
.div1{
width: auto;
height: 600px;
background: #cccccc;
position: relative;
}
.div2{
position: absolute;
left: 50%;
top: 50%;
margin-left: -600px;
margin-top: -200px;
width: 1200px;
height: 400px;
background: #4fcc8d;
line-height: 400px;
font-size: 36px;
text-align: center;
}
原理就是,先用 left:50%; top:50%; 让这个 div 的左上角位于页面正中。然后再利用 margin-left:-600px;margin-top:-200px;使div向左向上移动它自身宽高的一半。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询