ブラウザのビューポートの下部に残したい固定幅DIVがあります。
残念ながら、これを実装しようとする手掛かりもありません。
明らかに最初にすることは、position
をfixed
に設定することです。しかし、それを超えて...手がかりはありません。
Css-tricksを参照してください。
CSS:
#footer {
position:fixed;
left:0px;
bottom:0px;
height:30px;
width:100%;
background:#999;
}
/* IE 6 */
* html #footer {
position:absolute;
top:expression((0-(footer.offsetHeight)+(document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight)+(ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop))+'px');
}
#mydiv{
position: fixed;
bottom: 0px;
}