원하는 효과
.test {color:#fff; margin:10px;}
언더바(_)를 쓰면 ie6에만 적용
.test {color:#fff; margin:10px; _margin:10px;}
ie6 에서만 스타일을 제외하는 것은 /**/ 를 추가
.test {color /**/:#fff; margin:10px;}
ie7에서만 적용하는 것은 빨간부분 css를 추가
*:first-child+html .test {color:#fff; margin:10px;}
ie버전을 제외한 Mac IE Ver5, OperaVer7, Mozilla, Firefox에만 적용하고자 한다면
:root div.matey {color:#000; margin:10px;}