본문 바로가기

css관련기록

핵에 대해서

크롬 적용 핵
@media screen and (-webkit-min-device-pixel-ratio:0) {
.qwer <이부분에 아이디 혹은 클래스> { margin-top:-27px <이부분에 값> }
}

파폭 적용 핵
.qwer, x:-moz-any-link, x:default {margin-top:-30px;} - 파폭 전용 핵이나 ie7 까지 영향 받음

ie 6 전용 핵
.qwer {margin:10px; _margin:5px}

ie 7 전용 핵
*:first-child+html .qwer {}

ie 8 핵 (ie6,7도 인식)
.qwer {margin:10px; margin:5px\9}