2008年12月4日 星期四

CSS Selector/Hack Tips

今天在寫CSS發現ie很多很不合群的地方,雖然以前就知道它很擺爛了。所以google了一些可能會用的到的CSS Hacks做做筆記。

IE 6 and below (以下)

* html selector{} 

IE 7 only

 *:first-child+html selector{} 

IE 7 and below

*:first-child+html selector{} 
* html selector{} 

IE 7 and modern browsers only

html>body selector{} 

Modern browsers only (not IE 7)

html>/**/body selector{} 

Recent Opera versions 9 and below

html:first-child selector{}

 

另外有人提出下面這個方法,只能在ie有效:

語法: +property: value

範例:

* {  
   font-size: 1.5em; /* 通用 */   
   +font-size: 2em; /* only IE */
}

沒有留言:

張貼留言