CSS DIV间隔浏览器底部100PX
展开全部
/*fixed 兼容解决方案*/
* html{
background-image:url(about:blank); background-attachment:fixed;
}
/*距离顶部固定位置(表达式里面的y可以换成某个数值。距离为10px就写10)*/
.fixed-top{
position: fixed; top:0px; _top:expression(eval(document.documentElement.scrollTop+y));
}
/*距离底部部固定位置(表达式里面的y可以换成某个数值。距离为10px就写10)*/
.fixed-bottom{
position: fixed; bottom:0px; _top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)-y)); }
.fixed{
_position: absolute; _bottom: auto;
}
样式里面那个y.就是个距离值。根据你要设置的大小相应的进行更改。
对应的元素<div class="fixed-bottom fixed"></div>
展开全部
给div写固定定位 position:fixed; 用法和absolute一样。只不过写了fixed 以后,div是根据浏览器定位的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
position:absolute;
bottom:100px;
bottom:100px;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
margin-bottom: 100px;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
其实没太明白你意思,可以用定位试试
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询