음.. 브라우저별 핵. 뭐 꼼수죠? 어쨌든 정리했습니다.
참고용으로 하셔도 되고 실로 써먹어도 되겠지만..
우리나라 웹 현실에 쓸만한게 몇개나 있을까요?
어쨌든 착하게 정리했네요.

/***** 선택자 핵 ******/

/* IE 6 이상 */

* html #uno  { color: red }

/* IE 7 이상 */

*:first-child+html #dos { color: red }

/* IE 7 과 현대 브라우저 */

html>body #tres { color: red }

/* 현대 부라우저 (IE 7 빼고) */

html>/**/body #cuatro { color: red }

/* 오페라 9.27 이상 */

html:first-child #cinco { color: red }

/*사파리 */

html[xmlns*=""] body:last-child #seis { color: red }

/*사파리 3+, 크롬 1+, 오페라 9+, 불여우 3.5+ */

body:nth-of-type(1) #siete { color: red }

/* 사파리 3+, 크롬 1+,  오페라 9+, 불여우 3.5+ */

body:first-of-type #ocho {  color: red }

/* 사파리 3, 크롬 1+ */

@media screen and (-webkit-min-device-pixel-ratio:0) {

 #diez  { background: #FFDECE; border: 2px solid #ff0000  }

}

/***** 속성 핵 ******/

/* ie6 이상 */

#once { _color:blue }

/* ie7 이상 */

#doce { *color: blue } /* or #color:blue */

/* '현대 브라우저'는 IE8 을 포함합니다, 여기에 동의하던 말던.. :) */
2009/04/27 19:08 2009/04/27 19:08

Trackback Address :: https://youngsam.net/trackback/347