首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

CSS+DIV布局解决方案

2012-05-22 
CSS+DIV布局CSS code#Layer1 {position:absolutewidth:98%height:1091pxz-index:1left: 35pxtop: 10p

CSS+DIV布局

CSS code
#Layer1 {    position:absolute;    width:98%;    height:1091px;    z-index:1;    left: 35px;    top: 10px;}
想用CSS控制层宽度为整个浏览器宽度的98%,这样好像不能实现。各位有什么方法吗

[解决办法]
你的意思是浏览器clientWidth减去滚动条宽度的98%?
HTML code
<!doctype html><html><head><meta charset="utf-8" /><title>宽度百分比</title><style type="text/css">*{    margin:0;    padding:0;}#Layer1 {    position:absolute;    width:98%;    height:1091px;    z-index:1;    left: 35px;    top: 10px;    background:blue;}</style></head><div id="Layer1"></div><body></body></html>
[解决办法]
HTML code
<!doctype html><html><head><meta charset="gbk" /><title>宽度百分比</title><style type="text/css">*{    margin:0;    padding:0;}#Layer1 {    margin:0 auto;    width:98%;    height:1091px;    background:blue;}</style></head><div id="Layer1"></div><body></body></html> 

热点排行