1.IE6的3像素偏移BUG
当浮动元素与非浮动元素相邻(注意这里的相邻可以是纵向的也可以是横向的)时,这个3像素的Bug就会出现,它会偏移3像素。实际表现就是两个元素之间产生了一道缝隙!解决方法很简单,将两个元素都浮动就OK了。此BUG深层的原因是非浮动元素的layout未触发,所以这里只要是能够触发layout的css都可以解决问题。
2.IE6 双倍边距问题
当浮动元素设置margin边距时,边距会加倍。解决方法是给浮动元素加上display:inline属性。
3.IE6下空标签高度问题
当你把标签的高度设置为0-19内的数字时,IE6会一致的显示为19px高。解决方法:给标签加上overflow:hidden。
4.IE6图片下方有空隙产生
css代码:
div {
border:1px solid red;
background:orange;
}
img {
width:276px;
height:110px;
}
HTML代码:1 <div>
2 <img src="...." alt="google" />
3 </div>
解决办法是:img{display:block;}
5.IE6,7失效的margin-left/right bug
HTML代码:
1 <div class="wrap">
2 <div class="cont">www.hemin.cn</div>
3 </div>
CSS代码:
1 .wrap{background:#eee;border:1px solid #ccc;}
2 .cont{border-bottom:2px solid #aaa;margin:0 100px;height:30px;}
解决方法:触发.warp的layout就可以了。具体的比如:给.warp加上zoom:1或者width等等。
6. IE6 幽灵文本(Ghost Text bug)
在我写本文之前,我遇到了这个bug。它相当的古怪和滑稽。一块不知哪来的重复的文本,被IE6显示在靠近原文本的下面。(译注:也可以参看Explorer 6 Duplicate Characters Bug获得bug演示)。我无法解决它,所以我搜索它,果然,这是另一个IE6的bug。
对此有许多解决方法,但是没有一个对我的例子有效(因为网站的复杂性我无法使用其中的一些方法)。所以我使用了hack。在原文本之后增加空格看起来能解决这个问题。
但是,从Hippy Tech Blog那里了解到,问题背后的原因是由于html注释标签。IE6不能正确的渲染它。下面是他建议的解决方案列表:
1.使用<!—[IF !IE]>标签包围注释
2.移除注释
3.在前浮动上增加样式 {display:inline;}
4.在适当的浮动的div上使用负边距
5.在原文本增加额外的 (比如10个空格) (hacky way)
7. 相对位置和溢出隐藏(Position Relative and Overflow Hidden)
这个问题我遇到过很多次,当时我正在准备一个JQuery的教程,因为我使用了很多overflow hidden来达到我想要的布局。
问题发生在当父元素的overflow被设置成hidden并且子元素被设置成position:relative。
CSS-Trick有一个很好的例子来演示这个bug。position:relative and overflow in internet explorer
解决方法
为父元素增加position:relative;
8. IE的最小高度(Min-Height for IE)
这很简单,IE忽略min-height属性。你可以用下面的hack来修复它。感谢Dustin Diaz。
这个解决方法在IE6, Mozilla/Firefox/Gecko, Opera 7.x+, Safari1.2里都工作的很好。
解决方法
1 selector {
2 min-height:500px;
3 height:auto !important;
4 height:500px;
5 }
9. Bicubic图像缩放(Bicubic Image Scaling)
你会喜欢这个的。IE那糟糕图像缩放让你很困扰?如果你拿IE和其他浏览器比较,IE缩小的图像看起来不如其他浏览器。
解决方法
img { -ms-interpolation-mode: bicubic; }
10.PNG透明(PNG Transparency)
我猜每个人都知道这个,但我仍把它列在这里,作为以后的参考。
所以如果你想要使用透明图像并且GIF不能给你想要的质量,你会需要这个对PNG的hack。你必须意识到,如果你使用一张PNG图像作为背景,你将不能设置背景的位置。
解决方法
img {
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(...);
}
11. IFrame透明背景 (IFrame Transparent Background)
在firefox和safari里你应该不会遇到这个问题因为默认情况下,iframe的背景被设置为transparent,但是在IE里,却不是如此。你需要用到allowTransparency 属性并且加入下面的CSS代码来达成目的。
解决方法
代码
/* in the iframe element */
<iframe src="content.html" allowTransparency="true">
</iframe>
/* in the iframe docuement, in this case content.html */
body {
background-color:transparent;
}
12. 禁用IE默认的垂直滚动条(Disabled IE default Vertical Scroll bar)
默认情况下,即使内容适合窗口大小,IE(译注:IE6/7)也会显示垂直滚动条。你可以使用overflow:auto,让滚动条只在你需要时出现。
13. :hover伪类(:hover Pseudo Class)
IE只支持<a>元素的 :hover伪类。你可以使用jQuery的hover event来达到相同效果。
解决方法
代码
1 /* jQuery Script */
2 $('#list li').hover(
3
4 function () {
5 $(this).addClass('color');
6 },
7
8 function() {
9 $(this).removeClass('color');
10 }
11 );
12
13
14 /* CSS Style */
15 .color {
16 background-color:#f00;
17 }
18
19 /* HTML */
20 <ul id="list">
21 <li>Item 1</li>
22 <li>Item 2</li>
23 <li>Item 3</li>
24 </ul>
14. 盒模型Hack(Box Hack Model)
这是IE里最热门的bug了。基本的理解是,IE计算宽度(width)的方式不同。基于w3c标准,一个元素总宽度应该是
总宽度 = margin-left + border-left + padding-left + width + padding-right + border-right + margin-right
但是,IE计算宽度时没有加上填充和边框:
总宽度 = margin-left + width + margin-right
更多的细节,请参考这个链接:Internet Explorer和CSS盒模型详细解释
解决方法
使用w3c的标准兼容模式。IE6或者之后的版本能基于w3c的标准计算,但是你仍旧会在IE5中遇到问题。
或者你可以用CSS Hack来解决这个问题。所有标准兼容的浏览器都能读取w\\idth:180px 除了IE5。
#content {
padding:10px;
border:1px solid;
width:200px;
w\\idth:180px;
}
15.IE bug(摘自:http://www.iwanna.cn/archives/2010/07/29/4780/)
问题 | 浏览器 | DEMO | 解决方法 | |
---|---|---|---|---|
Hacking Rules: property:all-ie\9; property:gte-ie8\0;*property:lte-ie7; +property:ie7; _property:ie6; |
||||
1 | input[button | submit] 不能用 margin:0 auto; 居中 | IE8 | bug | fixed | 为input添加width |
2 | body{overflow:hidden;}没有去掉滚动条 | IE6/7 | bug | fixed | 设置html{overflow:hidden;} |
3 | hasLayout的标签拥有高度 | IE6/7 | bug | fixed | *height:0; _overflow:hidden; |
4 | form>[hasLayout]元素有margin-left时,子元素中的[input | textarea] 出现2×margin-left | IE6/7 | bug | fixed | form > [hasLayout 元素]{margin-left:宽度;} form div{*margin-left:宽度÷2;} |
5 | 当border-width有1条<边3条时被设置成dotted时,1px的边dotted显示成dashed | IE7 | bug | fixed | 不在同一个元素上使用不同宽度的 dotted |
6 | 当子元素有position:relative的时候,父元素设置overflow:[hidden|auto]相当于给子元素设置了position:visible; | IE6/7 | bug | fixed | 给父元素设置position:relative; |
7 | :hover伪类不能改变有position:absolute的子级元素的left/top值 | IE7 | bug | fixed | 把top/left的值设置成除0%外的所有百分值;或添加一个margin-[所有方向]除0外的所有值,包括0% |
8 | :focus + selector {} 选择器失效 | IE8 | bug | fixed | 在失效选择器后面添加一个空选择器, :focus{} |
9 | 列表中混乱的浮动:在list中浮动图片时,图片出现溢出正常位置;或没有list-style | IE8 | bug | fixed | 用背景图片替换list-style |
10 | th 不会自动继承上级元素的 text-align | IE8 | bug | fixed | 给th添加text-align:inherit; (base.css中已包含) |
11 | 样式(包括link/style/@import(link)) 最多允许个为是:32 | IE6-8 | ─ 常识 | 99.99%的情况下,不会遇到 |
12 | :hover 时若background-color为#fff, 失效 | IE7 | bug | fixed | 把background-color改成background。或者,非#fff || #ffffff |
13 | 忽略’>’后有注释的选择器:selector> /**/ selector{} | IE6 | bug | fixed | [官方误判] 这个bug是IE6 BUG |
14 | * html | IE6 | ─ HACK | 只对IE6有效 |
15 | PNG图片中的颜色和背景颜色的值相同,但显示不同 | IE6-7 | bug | fixed | 利用 pngcrush 去除图片中的 Gamma profiles |
16 | margin:0 auto; 不能让block元素水平居中 | IE6-8 | bug | fixed | 给block元素添加一个width |
17 | 使用伪类 :first-line | :first-letter, 属性的值中出现!important 会使属性失效 | IE8 | bug | fixed | !important is evil, don’t use it anymore |
18 | :first-letter 失效 | IE6 | bug | fixed | 把 :first-letter 移到离{}最近的地方,如 h1, p:first-letter{},而非 p:first-letter h1{} |
19 | Position:absolute元素中,a display:block, 在非:hover时只有文本可点击 | IE6/7 | bug | fixed | 给a添加background, 如果背景透明,使用background:url(‘任何页面中已经缓存的文件链接’),不推荐background:url(#)[官方的解决方法],因为会增加一下HTTP请求 |
20 | float列表元素不水平对齐:li不设置float,a设置display:block;float:[方向],li不水平对齐 | IE6/7 | bug | fixed | 给li设置display:inline 或 float:[方向] |
21 | dt, dd, li 背景失效 | IE6 | bug | fixed | dt, dd, li{position:relative;} (base.css中已包含) |
22 | <noscript />元素的样式在启用javascript的情况下显示了样式 | IE6-8 | bug | fixed | 利用js给<noscript />添加display:none; |
23 | 使用filter处理的透明背景图片的透明部分不可点 | IE6-8 | bug | fixed | 把background:none变成background:url(‘链接’),链接到本身和图片之外的任何文件 |
24 | li内元素偏离 baseline 向下拉 | IE8 | bug | fixed | 给li设置display:inline 或 float:[方向] |
25 | 列表中li的list-style不显示 | IE6/7 | bug | fixed | 给li添加margin-left,留空间来显示(不要加在ul上) |
26 | 图片不能垂直居中 | IE6/7 | bug/fixed | 添加一个空标签,并赋给”Layout”, 比如display:inline-block; |
27 | 不能自定义指针样式 | IE6-8 | bug | fixed | 给指针文件设置绝对路径 |
28 | 背景溢出,拖动滚动条后显示正常 | IE6 | bug | fixed | 给父元素添加overflow:hidden防止溢出,并赋予hasLayout,如果添加_zoom:1; |
29 | 高度超过height定义的高 | IE6 | bug/fixed | 添加_overflow:hidden;(推荐)或者_font-size:0; |
30 | 宽度超过width定义的宽 | IE6 | bug/fixed | 添加_overflow:hidden; 或使用alice v3 中的 .sl-word-break 类(table用.sl-table-break) |
31 | 双倍边距 | IE6 | ─ 常识 | 添加display:inline到float元素中 |
32 | margin负值隐藏:hasLayout的父元素内的非hasLayout元素,使用负边距时,超出父元素部分不可见 | IE6/7 | bug/fixed | 去掉父元素的hasLayout;或者赋hasLayout给子元素,并添加position:relative; |
33 | 给两个浮动元素的某中一个的文字设定为斜体,另一个元素下拉在有斜体文字元素的下面 | IE6 | bug/fixed | 给有斜体文字的元素添加overflow:hidden; |
35 | 3px 间隔:在float元素后的元素,会有3px间隔 | IE6 | bug/fixed | 因为是确切的3px,所以,用“暴力破解”吧,比如_margin-left:-3px; |
35 | text-align 影响块级元素 | IE6/7 | bug/fixed | 整理你的float;或者分开设置text-alig |
总之万恶的IE6是这么的”与众不同”。以后我会持续更新这篇日志,记录更多的BUG,直到IE6消失!