IE5

width: 60px; /* ie5에 해당하는 값 */
voice-family: "\"}\"";
voice-family: inherit;
width: 100px; /* 그외 브라우저의 정상값. ie5는 이 부분을 무시한다 */


/* DTD가 표준모드인 경우에만 작용함 */
#selector {property: value; _property /**/: value;}

IE5~IE6

/* DTD가 없는 문서는 IE7에도 작용함 */
#selector {property: value; _property: value;}

IE6

* html { … }

IE7

*:first-child+html { … }

IE5~IE7

/* 문서의 DTD와 무관하게 작용함 */
#selector {property: value; *property: value;}