互联网提供了很多种“将广告始终定位到网页右下角”的解决方案,大多会用到javascript,其实仅调用样式表就可以实现该效果。
在IE7和FF浏览器中,只需要position:fixed就可以将图层定义到网页的任意位置。
- body{margin:0;border:0;height:100%;overflow-y:auto;}
- #test{display:block; bottom:3px; right:3px; width:130px; position:fixed;}
- /* 以下是写给IE6的 */
- * html #test{position:absolute;right:18px}
- * html{overflow-x:auto; overflow-y:hidden;}