<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>無標題文檔</title> <style> <!-- !important只有Ie7.0和firefox可以識別,但是Ie6.0不能成功應用.!important提升優先級(或看成強制重定義--> <!-- !important是CSS1就定義的語法,作用是提高指定樣式規則的應用優先權(參見:W3.org的解釋)。語法格式 { sRule!important } ,即寫在定義的最後面,例如:box { color:red !important; } 假如我們定義一個這樣的樣式: #box { background-color: #ffffff !important; background-color: #000000; } 那麼在支持該語法的浏覽器,如Firefox、Opera中,能夠理解!important的優先級,背景顯示#cccccc顏色,而在IE中則顯示#000000.能說它“不認識、不支持”! --> #box div { color:red; } .important_false { color:blue; } .important_true { color:blue !important; } #box2 { background-color: #cccccc !important; background-color: #000000; } <!-- firefox: 下面這段如果放在最上面,則是紅色的, 如果放在最下面則是blue。說明如果放在最上面,#box div覆蓋了#idColor,這時是id的優先級。而.important_false的class優先級小於id,沒有覆蓋掉#box div。 如果放在最下面,則#idColor沒有覆蓋.important_false。 如果不設置id="idColor", 則是blue。說明.important_false 覆蓋掉了#box div IE7: #idColor放在最下面,是紅色的。放在最下面也是紅色的,去掉id屬性。也是紅色的。說明都沒覆蓋#box div。 --> #idColor { color:gray; } </style> </head> <body> <div id="box"> <div class="important_false" id="idColor">這一行末使用important。class的優先級小於id的優先級。IE7是紅色,firefox是藍色。</div> <div class="important_true" >這一行使用了important</div> </div> <div id="box2"> 在不同的浏覽器下,這行字的色應該不同!IE7,Firefox是紅色。IE6是藍色</div> </body> </html>