广告始终定位到网页右下角 css


互联网提供了很多种“将广告始终定位到网页右下角”的解决方案,大多会用到javascript,其实仅调用样式表就可以实现该效果。
以下万恶的代码主要是写给IE6的,在IE7和FF浏览器中,只需要position:fixed就可以将图层定义到网页的任意位置。
CSS Code复制内容到剪贴板
  1. body{margin:0;border:0;height:100%;overflow-y:auto;}    
  2. #test{display:blockbottombottom:3pxrightright:3pxwidth:130pxposition:fixed;}    
  3. /* 以下是写给IE6的 */    
  4. * html #test{position:absolute;rightright:18px}     
  5. * html{overflow-x:autooverflow-y:hidden;}   


提示:可以修改后运行.

必要元素:
DOCTYPE声明 、 html标签 、body标签 、 一个ID为test的div。

« 
» 
快速导航

Copyright © 2016 phpStudy | 豫ICP备2021030365号-3