以下万恶的代码主要是写给IE6的,在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;}演示页面:
[Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]
必要元素:
DOCTYPE声明 、 html标签 、body标签 、 一个ID为test的div。