Thứ Ba, 12 tháng 5, 2009

Fixed Positioning in IE6

<body>
<style type="text/css">
* {
margin: 0;
}
html, body {
height: 100%;
overflow: auto;
}
/*------------------------------*/
.bottom {
position: fixed;
bottom: 0px;
}
* html .bottom {
position: absolute;
}
/*------------------------------*/
.top {
position: fixed;
top: 0px;
}
* html .top {
position: absolute;
}
</style>

<div style="background:#99CC99; height:1000px">

</div>

<div class="bottom">
bottom here
</div>
<div class="top">
top here
</div>

</body>

Không có nhận xét nào:

Đăng nhận xét