<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html class="ext-strict x-viewport"> <head> <title> New Document </title> <style type="text/css"> .x-viewport, .x-viewport body { margin: 0; padding: 0; border: 0 none; overflow: hidden; height: 100%; } body { margin: 0; padding: 0; border: 0 none; overflow: hidden; height: 100%; } #header { position: absolute; left: 0px; top: 0px; background: red; height: 69px; right:0px; } #left { width: 180px; left: 0px; top: 69px; position: absolute; bottom:0px; } #right { padding: 0px; left: 184px; top: 69px; position: absolute; bottom:0px; right:0px; } </style> </script> </head> <body> <div id="header"></div> <div id="left"><div style="border:1px solid #808080;position: absolute;top:2px;left:4px;bottom:4px;right:0px;">zuobian</div></div> <div style="position:absolute;top:71px;left:180px;width:4px;bottom:4px;"></div> <div id="right"> <div style="position:absolute;top:2px;bottom:4px;right:2px;border:1px solid #808080;left:0px;"> <div style="position: absolute;overflow: hidden;left: 0px;right: 0px;height: 30px;"> <div style="border-bottom:1px solid #808080;height:29px;line-height:29px;overflow: hidden;">当前位置:未知数字2013/9/3</div> </div> <div style="position:absolute;overflow: hidden;top: 30px;bottom: 0px;left: 0px;right: 0px;"> <div style="position:absolute;overflow: hidden;top:0px;bottom: 0px;left: 0px;right: 0px;margin:2px;"> <iframe src="http://www.baidu.com" width="100%" height="100%" scrolling="no" frameborder="0"></iframe> </div> </div> </div> </div> </body> </html>
我是做过类似的网页,当时测试也是卡在IE6,其实这方面你不用过多考虑,主流IE浏览器:技术含量最高的是IE10,性能最好的是IE9,国内使用人数最多的是IE7、8;IE6兼容性比较差,很少人使用;接着说下解决方法,由于IE6浏览器本身问题,一般只能通过修改div和css代码来调整,比如:margin-left:5px;/*IE6下属性写的是5PX,但在显示出来的是10px;有教程http://my.68design.net/30031/blog/12036.html,这样治标不治本,因为你把IE6的界面调好了,其他的浏览器又可能出现“错位”现象。希望你好好考虑!
关键字:CSSHack~针对IE6特殊处理下即可~
针对IE6 hack 下就好了.
在样式前面加上'_'或'*',这两个都是专门针对Ie6起作用的样式,期待IE6的灭亡
楼上多的对 用_吧,这个就ie6认,*是ie6和ie7都人的。
凡是ie6不支持的,清一色这样写.test{color:red,_color:black},这样写,ie6中为black,其他浏览器都为红色
换了种方法