用CSS将一个DIV固定在网页的顶部或底部

直接用 position:fixed;  这个属性是相对于窗口的固定定位。

CSS:

#aa{
position:fixed;
bottom:0px;
left: auto;
right: auto;
width: 800px;
height: 30px;
background: #f30;
}

Add a Comment

您的电子邮箱地址不会被公开。 必填项已用 * 标注