我需要在页面上居中一个具有以下特征的div:
---- HTML
<div id="content">
<div id="box">
text
</div>
</div>
---- CSS
<style type="text/css">
#content {
width:80%;
background:#000;
margin:0 auto;
}
#box{
width:100%;
height:60%;
background:red;
min-width:980px;
min-height:588px;
max-width:1170px;
max-height:702px;
}
</style>
答案 0 :(得分:1)
在这里查看更新的小提琴。
我已添加到#box CSS
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
即使您更改了浏览器的大小,也会将此框置于中央位置。