背景:
阅读新闻

如何将广告始终定位到网页右下角

[日期:2013-01-14] 来源:  作者: [字体: ]

互联网提供了很多种“将广告始终定位到网页右下角”的解决方案,大多会用到javascript,其实仅调用样式表就可以实现该效果。
在IE7和FF浏览器中,只需要position:fixed就可以将图层定义到网页的任意位置。

  1. body{margin:0;border:0;height:100%;overflow-y:auto;}
  2. #test{display:block; bottom:3px; right:3px; width:130px; position:fixed;}
  3. /* 以下是写给IE6*/
  4. * html #test{position:absolute;right:18px} 
  5. * html{overflow-x:auto; overflow-y:hidden;}
收藏 推荐 打印 | 录入:admin | 阅读:
相关新闻      
本文评论   [发表评论]   全部评论 (0)
热门评论