IE6布局 梦里梦外; 2024-02-19 18:20 43阅读 0赞 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>圣杯布局</title> <style type="text/css"> body \{background-color: \#ffffff; font-size:14px;\} \#hd, \#ft \{padding:20px 3px; background-color: \#cccccc; text-align: center;\} .bd-lft, .bd-rgt, .bd-3-lr, .bd-3-ll, .bd-3-rr \{margin:10px 0; min-width:400px;\} .main \{background-color: \#03a9f4; color:\#ffffff;\} .aside, .aside-1, .aside-2 \{background-color: \#00bcd4; color:\#ffffff;\} p \{margin:0; padding:20px; text-align: center;\} /\* 左侧栏固定宽度,右侧自适应 \*/ .bd-lft \{ zoom:1; overflow:hidden; padding-left:210px; \} .bd-lft .aside \{ float:left; width:200px; margin-left:-100%; /\*= -100%\*/ position:relative; left:-210px; /\* = -parantNode.paddingLeft \*/ \_left: 0; /\*IE6 hack\*/ \} .bd-lft .main \{ float:left; width:100%; \} /\* 右侧栏固定宽度,左侧自适应 \*/ .bd-rgt \{ zoom:1; overflow:hidden; padding-right:210px; \} .bd-rgt .aside \{ float:left; width:200px; margin-left:-200px; /\* = -this.width \*/ position:relative; right:-210px; /\* = -parantNode.paddingRight \*/ \} .bd-rgt .main \{ float:left; width:100%; \} /\* 左中右 三栏自适应 \*/ .bd-3-lr \{ zoom:1; overflow:hidden; padding-left:210px; padding-right:210px; \} .bd-3-lr .main \{ float:left; width:100%; \} .bd-3-lr .aside-1 \{ float: left; width:200px; margin-left: -100%; position:relative; left: -210px; \_left: 210px; /\*IE6 hack\*/ \} .bd-3-lr .aside-2 \{ float: left; width:200px; margin-left: -200px; position:relative; right: -210px; \} /\* 都在左边,右侧自适应 \*/ .bd-3-ll \{ zoom:1; overflow:hidden; padding-left:420px; \} .bd-3-ll .main \{ float:left; width:100%; \} .bd-3-ll .aside-1 \{ float: left; width:200px; margin-left: -100%; position:relative; left: -420px; \_left: 0px; /\*IE6 hack\*/ \} .bd-3-ll .aside-2 \{ float: left; width:200px; margin-left: -100%; position:relative; left: -210px; \_left: 210px; /\*IE6 hack\*/ \} /\* 都在右边,左侧自适应 \*/ .bd-3-rr \{ zoom:1; overflow:hidden; padding-right:420px; \} .bd-3-rr .main \{ float:left; width:100%; \} .bd-3-rr .aside-1 \{ float: left; width:200px; margin-left: -200px; position:relative; right: -210px; \} .bd-3-rr .aside-2 \{ float: left; width:200px; margin-left: -200px; position:relative; right: -420px; \} </style> </head> <body> <div id="hd">头部</div> <div class="bd-lft"> <div class="main"> <p>主内容栏自适应宽度</p> </div> <div class="aside"> <p>侧边栏固定宽度</p> </div> </div> <div class="bd-rgt"> <div class="main"> <p>主内容栏自适应宽度</p> </div> <div class="aside"> <p>侧边栏固定宽度</p> </div> </div> <div class="bd-3-lr"> <div class="main"> <p>主内容栏自适应宽度</p> </div> <div class="aside-1"> <p>侧边栏1固定宽度</p> </div> <div class="aside-2"> <p>侧边栏2固定宽度</p> </div> </div> <div class="bd-3-ll"> <div class="main"> <p>主内容栏自适应宽度</p> </div> <div class="aside-1"> <p>侧边栏1固定宽度</p> </div> <div class="aside-2"> <p>侧边栏2固定宽度</p> </div> </div> <div class="bd-3-rr"> <div class="main"> <p>主内容栏自适应宽度</p> </div> <div class="aside-1"> <p>侧边栏1固定宽度</p> </div> <div class="aside-2"> <p>侧边栏2固定宽度</p> </div> </div> <div id="ft">底部</div> </body> </html>
相关 IE6布局 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Comp 梦里梦外;/ 2024年02月19日 18:20/ 0 赞/ 44 阅读
相关 IE6 BUG 先来看html代码: <ul> <li><a href=""><img src="images/k.gif" />第六届中国国际教育装备科技创新峰会</a></li> ╰半夏微凉°/ 2024年02月17日 14:06/ 0 赞/ 40 阅读
相关 linux运行ie6网页,安装IE6/7(IE4Linux) 注:IE7好像不太好使,这也是IE4Linux目前默认没有放开该选项的原因吧 下载: 然后解压并进入目录: tar zxvf ies4linux-latest.tar.g 深藏阁楼爱情的钟/ 2023年01月21日 02:05/ 0 赞/ 5 阅读
相关 各种IE兼容模式代码,IE6,IE7,IE8,IE9,IE10 在这里送上几种IE使用模式: 1.强制使用IE5模式来解析 1 <meta http-equiv=“X-UA-Compatible” content=“IE=5″> 迷南。/ 2022年09月22日 14:57/ 0 赞/ 397 阅读
相关 ie6 文章里面有些是自己写代码中遇到的,但更多的是从网上收集而来,然后自己测试后在记录上去(也蛮累的) 边写边记吧........... 1 .ie6下的select问题 当 淡淡的烟草味﹌/ 2022年08月04日 01:52/ 0 赞/ 149 阅读
还没有评论,来说两句吧...