 |
|
|  |
|
 |
14년 전 |
브라우저별 핵 정리
1. Internet Explorer CSS Hack (인터넷 익스플로러 핵)
[ IE6 핵 ]
/* for IE6 */
*html .someClass {color:red}
[ IE7 핵 ]
/* for IE7 */
*:first-child + html .someClass {color:red}
[ IE7 inline 핵 ]
/* inline IE7 CSS */
.someElement {
color:blue; /* all browsers */
*color:red
}
[ IE8 inline 핵 ]
/* inline IE8 CSS */
.someElement {
color:crimson; /* all browsers */
color:black\0/ !important; /* IE 8 */
}
[ IE9 핵 ]
/* IE9 CSS */
:root .someElement { color:green\0/IE9; }
2. Firefox Only CSS Hack (파이어폭스 전용 핵)
/* FireFox 3 and Up */
html>/**/body .someClass, x:-moz-any-link, x:default {left:1em}
3. Chrome and Safari CSS hack (크롬, 사파리 핵)
@media screen and (-webkit-min-device-pixel-ratio:0)
{
.someElement {margin:1em}
}
|
|
추천 : 886 |
추천
목록
|
|
|  |
|