我在页面中有 header1 div,我想设置位置:在 IE7 和 IE6 中固定顶部和中心。在多分辨率。
我在 css 中使用此代码:
.page
{
width:900px;
height:auto;
margin:auto;
}
.header1
{
width: 500px;
height: 60px;
float: right;
position: fixed;
display: block;
z-index: 1100;
margin: 0 50px 0 0;
}
html代码:
<div class="page">
<div class="header1"></div>
</div>
或者
.page
{
width:900px;
height:auto;
margin:auto;
}
.header1
{
width: 500px;
height: 60px;
float: right;
position: fixed;
display: block;
z-index: 1100;
top: 0px;
right: 0px; /*right: X px*/
left: 0px; /*left: X px*/
}
html代码:
<div class="page">
<div class="header1"></div>
</div>
它适用于 IE 8+,.. 但不适用于 IE7 和 6。