头闻号

广州丽榜化妆品有限公司

综合性公司

首页 > 新闻中心 > 科技常识:固定位置显示弹出层(兼容IE6,IE8,FF)
科技常识:固定位置显示弹出层(兼容IE6,IE8,FF)
发布时间:2023-02-01 10:13:33        浏览次数:2        返回列表

今天小编跟大家讲解下有关固定位置显示弹出层(兼容IE6,IE8,FF) ,相信小伙伴们对这个话题应该有所关注吧,小编也收集到了有关固定位置显示弹出层(兼容IE6,IE8,FF) 的相关资料,希望小伙伴们看了有所帮助。

css样式:复制代码代码如下: <style type="text/css"> body{_background-attachment:fixed; _background-image:url(nothing);} #status-box{width:100px; height:100px; color:#FFF; background-color:black; position:fixed; _position:absolute; bottom:0;_top:expression(documentElement.scrollTop+document.documentElement.clientHeight-100); right:0;} #cs{background-color:#ccc;width:200px;height:120px;position:absolute;left:100px;top:100px;} </style> body: 复制代码代码如下: <body> <div id="cs">随页面走动</div> <div style="height:900px;"></div> <div id="status-box">静态层</div> </body>

来源:爱蒂网