當你想在一個瀏覽器里改變樣式而不像在其他瀏覽器中改變時,這些選擇器很有用。
ie6以下
*html{}
ie 7 以下
*:first-child+html {} * html {}
只對ie 7
*:first-child+html {}
只對ie 7 和現代瀏覽器
html>body {}
只對現代瀏覽器(非ie 7)
html>/**/body {}
最新的opera 9以下版本
html:first-child {}
safari
html[xmlns*=”"] body:last-child {}
要使用這些選擇器,請在樣式前寫下這些代碼。例如:
#content-box {
width: 300px;
height: 150px;
}
* html #content-box {
width: 250px;
}
/* 重寫上面的代碼并且把寬度改為250px
在ie6以下版本中適用。 */
新聞熱點
疑難解答