CSS Hack 1

크로스브라우징 2010. 12. 14. 13:19

CSS Hack
IE6 이하
* html { … }
IE7 이하 (두가지 동시에 사용)
*:first-child+html { … } * html { … }
IE7에서만
*:first-child+html { … }
IE6 제외한 최신 브라우져 (ex. IE7, Mozila, Opera)
html>body { … }
IE7 제외한 최신 브라우져
html>/**/>body { … }
Comment Hack
<!–StartFragment–><!–[if IE]>
According to the conditional comment this is Internet Explorer
<![endif]–>

<!–[if IE 5]>
According to the conditional comment this is Internet Explorer 5
<![endif]–>

<!–[if IE 5.0]>
According to the conditional comment this is Internet Explorer 5.0
<![endif]–>

<!–[if IE 5.5]>
According to the conditional comment this is Internet Explorer 5.5
<![endif]–>

<!–[if IE 6]>
According to the conditional comment this is Internet Explorer 6
<![endif]–>

<!–[if gte IE 5]>
According to the conditional comment this is Internet Explorer 5 and up
<![endif]–>

<!–[if lt IE 6]>
According to the conditional comment this is Internet Explorer lower than 6
<![endif]–>

<!–[if lte IE 5.5]>
According to the conditional comment this is Internet Explorer lower or equal to 5.5
<![endif]–>


'크로스브라우징' 카테고리의 다른 글

word-break 이런 문제가....  (0) 2011.05.31
ie HTML5 에서 border-radius 사용제한  (0) 2011.04.07
ie7 li 주위로 3px정도 공간이 생기는 버그  (0) 2010.08.04
min-height  (0) 2010.07.10
ie6 position 버그  (0) 2010.07.09
: