【IE大叔的嘴歪眼斜】之—— 由hasLayout引發的臨床CSS Bug表

來源:互聯網
上載者:User

註:本文轉自http://www.cnblogs.com/ccto/archive/2013/03/07/2948630.html

IE大叔這嘴歪眼斜的毛病不是一天兩天了,集體拉出來測試時候,明明大家都在微笑,就丫一副呲牙咧嘴的......

哎,沒辦法,誰讓咱國內市面上都是這種呲牙咧嘴的瀏覽器呢.....(關注IE678死亡速度)

查閱,翻讀,摘抄,記錄,再逐一實踐,總結,終於對他這個臭毛病有了根源上的認識。

hasLayout!

先上定義:

它是IE的特有屬性。它決定著一個元素要麼自己對自身的內容進行計算大小和組織,要麼依賴於父元素來計算群組織內容。為了區別這兩個概念,渲染引擎採用了hasLayout的屬性,true或false,當屬性為true時,我們說這個元素觸發了布局(Layout)。

具有hasLayout屬性的標籤

  • <html>,<body>
  • <table>,<tr>,<td>,<td>
  • <img>
  • <hr>
  • <input>,<button>,<select>,<textarea>,<fieldset>,<legend>
  • <iframe>,<embed>,<object>,<applet>
  • <marquee>

這個屬性存在的意義?

當一個元素對象的layout被啟用時候,它和它的子項目的定位和尺寸計算將獨立進行,也就是獨立布局,因此瀏覽器會消耗更多的代價來處理擁有layout的元素。為了提高效能,IE整出了個這麼個私人屬性。

可觸發hasLayout的CSS特性:

display: inline-blockheight:(除了auto之外任何值)width:(除了auto之外任何值)float:(left || right)position:absolutewriting-mode:tb-rlzoom:(除了normal之外任何值)

IE7可觸發hasLayout的CSS特性:

min-height:(任意值)min-width:(任意值)max-height:(除none之外任意值)max-width:(除none之外任意值)overflow:(除visible之外任意值,僅用於區塊層級元素)overflow-x:(除visible之外任意值,僅用於區塊層級元素)overflow-y:(除visible之外任意值,僅用於區塊層級元素)position:fixed

再來看看嘴歪眼斜的臨床表現:(以下內容均本人親測)

  問題 瀏覽器 DEMO 解決辦法
1 input[button | submit]未置中 IE8 bug | fixed 添加width
2 body{overflow:hidden;}沒有去掉捲軸 IE6/7 bug | fixed 改成html{overflow:hidden;}
3 擁有hasLayout的標籤有高度 IE6/7 bug | fixed 添加_overflow:hidden;*height:0
4 form>[hasLayout]元素有margin-left時,子項目中的[input | textarea] 出現2×margin-left IE6/7 bug | fixed form > [hasLayout 元素]{margin-left:寬度;}
form div{*margin-left:寬度÷2;}
5 當子項目有position:relative的時候,父元素設定overflow:[hidden|auto]相當於給子項目設定了position:visible; IE6/7 bug | fixed 給父元素設定position:relative;
6 列表中混亂的浮動:在list中浮動圖片時,圖片出現溢出正常位置;或沒有list-style IE8 bug | fixed 用背景圖片替換list-style
7 th 不會自動繼承上階項目的 text-align IE8 bug | fixed 給th添加text-align:inherit;
8 樣式(包括link/style/@import(link)) 最多允許個為是:32 IE6-8 ─ 常識 99.99%的情況下,不會遇到
9 PNG圖片中的顏色和背景顏色的值相同,但顯示不同 IE6-7 bug | fixed 利用 pngcrush 去除圖片中的 Gamma profiles
10 margin:0 auto; 不能讓block元素水平置中 IE6-8 bug | fixed 給block元素添加一個width
11 使用偽類 :first-line | :first-letter, 屬性的值中出現!important 會使屬性失效 IE8 bug | fixed !important is evil, don’t use it anymore
12 :first-letter 失效 IE6 bug | fixed 把 :first-letter 移到離{}最近的地方,如 h1, p:first-letter{},而非 p:first-letter h1{}
13 Position:absolute元素中,a display:block, 在非:hover時只有文本可點擊 IE6/7 bug | fixed 給a添加background, 如果背景透明,使用background:url(‘任何頁面中已經緩衝的檔案連結’),不推薦background:url(#)[官方的解決方案],因為會增加一下HTTP請求
14 dt, dd, li 背景失效 IE6 bug | fixed dt, dd, li{position:relative;}
15 <noscript />元素的樣式在啟用javascript的情況下顯示了樣式 IE6-8 bug | fixed 利用js給<noscript />添加display:none;
16 li內元素偏離 baseline 向下拉 IE8/9 bug | fixed 給li設定display:inline 或 float:[方向]
17 列表中li的list-style不顯示 IE6/7 bug | fixed 給li添加margin-left,留空間來顯示(不要加在ul上)
18 圖片不能垂直置中 IE6/7 bug/fixed 添加一個空標籤,並賦給”Layout”, 比如display:inline-block;
19 不能自訂指標樣式 IE6-8 bug | fixed 給指標檔案設定絕對路徑
20 高度超過height定義的高 IE6 bug/fixed 添加_overflow:hidden;(推薦)或者_font-size:0;
21 寬度超過width定義的寬 IE6 bug/fixed 添加_overflow:hidden;
22 雙倍邊距 IE6 ─ 常識 添加display:inline到float元素中
23 margin負值隱藏:hasLayout的父元素內的非hasLayout元素,使用負邊距時,超出父元素部分不可見 IE6/7 bug/fixed 去掉父元素的hasLayout;或者賦hasLayout給子項目,並添加position:relative;
24 給兩個浮動元素的某中一個的文字設定為斜體,另一個元素下拉在有斜體文字元素的下面 IE6 bug/fixed 給有斜體文字的元素添加overflow:hidden;
25 3px 間隔:在float元素後的元素,會有3px間隔 IE6 bug/fixed 因為是確切的3px,所以,用“暴力破解”吧,比如_margin-left:-3px;或者也設定float
26 text-align 影響區塊層級元素 IE6/7 bug/fixed 整理你的float;或者分開設定text-align

 

(PS:如若想信手拈來,玩轉IE,除了強大自己之外,還需大家一起共同默默祈禱:“IE6速死,XP速死......”)

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.