CSS的inherit與auto流量分析_經驗交流

來源:互聯網
上載者:User
通常是一個很小的數值,經過層層放大歪曲後,整個布局就走形了。CSS是一門很簡單的語言,易學易用,但也最容易出垃圾代碼。這是沒有深入研究這門語言所致。本人認為,CSS是由以下三大塊構成的:預設值,繼承系統與加權系統。預設值,也就是瀏覽器在使用者沒有設定屬性的情況下,預設指定的屬性。CSS架構基本都有一個叫reset.css 的檔案,就是對其進行重設,消除各瀏覽器的差異的。繼承系統就是下面要重點討論的東西。加權系統,也就是優先順序的問題,不在本文的討論範疇,不說了。另,這三個東西都面臨著IE Bug的侵襲,危害甚大,自己另行了斷吧(笑)。

在CSS中,許多屬性都是可以繼承的,如某個段落的字型設定為白色,其元素的字型不用設定或設定為inhert,它就是白色。這些屬性被稱之為inherited property,它會從父元素擷取對應屬性的經過計算與轉換的值(computed value),如果父元素和它的情形一樣,它就繼續往上找,最後沒有就使用瀏覽器的預設值。

下面是 inherited properties的一覽表:
複製代碼 代碼如下:
border-collapse
border-spacing
caption-side
color
cursor
direction
empty-cells
font
font-family
font-stretch
font-size
font-size-adjust
font-style
font-variant
font-weight
letter-spacing
line-height
list-style
opacity
list-style-image
list-style-type
quotes
text-align
text-indent
text-transform
white-space
word-spacing

<!doctype html> <html dir="ltr" lang="zh-CN"> <head> <meta charset="gb2312"/> <meta http-equiv="X-UA-Compatible" content="IE=8"> <style type="text/css"> </style> <title>CSS</title> </head> <body> 父元素 子項目 </body> </html>
[Ctrl+A 全選 注:如需引入外部Js需重新整理才能執行]
我們給父元素設定了字型的樣式,沒有設定子項目的,當取出子項目的時,發現其值轉換為rgb格式(當然IE除外啦!)
不過,在IE7及其之前的版本,是不支援用inhert來設定direction與visibility以外的樣式屬性。具體可參見這裡與這裡
在IE8中,原本是inherited property的text-align在th中失效。









Ruby Rouvre
By 司徒正美

table, tr, td, th {
border-collapse: collapse;
border: 1px solid #000;
}
table {
text-align: right;
}
td, th {
width: 100px;
}
本來th應該會從table中繼承文本向靠右對齊的設定,但失效了……
<!doctype html> <html dir="ltr" lang="zh-CN"> <head> <meta charset="utf-8"/> <meta http-equiv="X-UA-Compatible" content="IE=8"> <style type="text/css"> table, tr, td, th { border-collapse: collapse; border: 1px solid #000; } table { text-align: right; } td, th { width: 100px; } </style> <title>CSS</title> </head> <body> <table> <tr> <th>Ruby</th> <th>Rouvre</th> </tr> <tr> <td>By</td> <td>司徒正美</td> </tr> </table> </body> </html>
[Ctrl+A 全選 注:如需引入外部Js需重新整理才能執行]
解決IE8這個弱智Bug也很容易,就是顯式地設定inhert。
table, tr, td, th {
border-collapse: collapse;
border: 1px solid #000;
}
table {
text-align: right;
}
td, th {
width: 100px;
}
th {
text-align: inherit;
}
<!doctype html> <html dir="ltr" lang="zh-CN"> <head> <meta charset="utf-8"/> <meta http-equiv="X-UA-Compatible" content="IE=8"> <style type="text/css"> table, tr, td, th { border-collapse: collapse; border: 1px solid #000; } table { text-align: right; } td, th { width: 100px; } th { text-align: inherit; } </style> <title>CSS</title> </head> <body> <table> <tr> <th>Ruby</th> <th>Rouvre</th> </tr> <tr> <td>By</td> <td>司徒正美</td> </tr> </table> </body> </html>
[Ctrl+A 全選 注:如需引入外部Js需重新整理才能執行]
此外還有一些CSS屬性是不能繼承的,最經典如border系列。它被稱之為non-inherited property,如果我們不為它設定,我們只能取得瀏覽器的預設值,預設值在Firefox中被稱之為 initial value 。一個相關的好訊息是,預設值在Firefox也可以指定了,這樣我們就不用reset樣式了!
下面是non-inherited property的一覽表:
background
border
bottom
clear
display
float
height
left
margin
outline
overflow
padding
position
right
top
visibility
width
z-index
<!doctype html> <html dir="ltr" lang="zh-CN"> <head> <meta charset="utf-8"/> <meta http-equiv="X-UA-Compatible" content="IE=8"> <style type="text/css"> </style> <title>CSS</title> </head> <body> 父元素 子項目 </body> </html>
[Ctrl+A 全選 注:如需引入外部Js需重新整理才能執行]
我們給父元素設定了背景顏色,沒有設定子項目的,這時會取得瀏覽器的預設值transparent(W3C那一方好像只要是顏色都會轉換為rgb格式,多出的a為Alpha)
http://monc.se/kitchen/38/cascading-order-and-inheritance-in-css http://elizabethcastro.com/html/extras/cssref.html
接著我們來看auto,這是一個含糊不清但是有長度概念的值。應用於以下屬性:
overflow
cursor
height
width
marker-offset
margin
margin-* (left|bottom|top|right|start|end)
top
bottom
left
right
table-layout
z-index
-moz-column-width
languages
在區塊層級元素的可度量的屬性中(如width,height),如果不設定值,其預設值是auto,但它很容易會被父級元素的值覆蓋,也就是隱式地成為了inhert了。在內嵌元素中,由於不具備盒子模型,如果不設定,就算是Firefox也原本奉還它,這對於精確計算元素的寬度與高度是非常不利的。auto還有對稱性,這個在置中布局我們常常運用到它。在非度量的屬性中,如overflow,就要具體情況具體分析了。
PS:此文為http://www.jb51.net/article/21718.htm做準備。
  • 相關文章

    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.