Comprehensive List of Browser-Specific CSS Hacks
http://paulirish.com/2009/browser-specific-css-hacks/
/***** 속성 핵 ******/
/* ie6 이상 */
#once { _color:blue }
/* ie7 이상 */
#doce { *color: blue } /* or #color:blue */
/***** Selector Hacks ******/ /* IE 6 and below */ * html #uno { color: red } /* IE 7 and below */ *:first-child+html #dos { color: red } /* IE 7 and modern browsers */ html>body #tres { color: red } /* Modern browsers (not IE 7) */ html>/**/body #cuatro { color: red } /* Opera 9.27 and below */ html:first-child #cinco { color: red } /* Safari */ html[xmlns*=""] body:last-child #seis { color: red } /*safari 3+, chrome 1+, opera9+, ff 3.5+ */ body:nth-of-type(1) #siete { color: red } /* safari 3+, chrome 1+, opera9+, ff 3.5+ */ body:first-of-type #ocho { color: red } /* saf3, chrome1+ */ @media screen and (-webkit-min-device-pixel-ratio:0) { #diez { background: #FFDECE; border: 2px solid #ff0000 } } /***** Attribute Hacks ******/ /* ie6 and below */ #once { _color:blue } /* ie7 and below */ #doce { *color: blue } /* or #color:blue */ /* 'Modern Browsers' includes IE8, whether you agree or not.. :) */
http://paulirish.com/2009/browser-specific-css-hacks/
/***** 속성 핵 ******/
/* ie6 이상 */
#once { _color:blue }
/* ie7 이상 */
#doce { *color: blue } /* or #color:blue */
-----------------------------------------------------------------------
파폭은 일반값(styleName), IE7은 #styleName, IE6은 _styleName으로 각각 지정
순서는
styleName:value (ex, margin:5px;) /* for other IE */
#styleName:value (ex, #margin:5px;) /* for IE7 */
_styleName:vlue (ex, _margin:5px;) /* for IE 6 */
컨디셔널 커맨트 사용하기 - CSS IE, FF 구분 & JS :
http://haco.tistory.com/1948
ex.
사용방법 : 아래처럼 IE외 브라우저용 CSS를 사용하고 밑에 IE용 CSS를 사용..
<link rel="stylesheet" type="text/css" href="basic.css" />
<link rel="stylesheet" type="text/css" href="editor.css" />
<link rel="stylesheet" type="text/css" href="post.css" />
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="basic.ie.css" />
<link rel="stylesheet" type="text/css" href="editor.ie.css" />
<link rel="stylesheet" type="text/css" href="post.ie.css" />
<![endif]-->
반응형
'유용한정보' 카테고리의 다른 글
우리나라 100대기업 CEO 학벌 (0) | 2009.05.20 |
---|---|
우리나라 한국 100대 기업 & 세계 100대 기업 (0) | 2009.05.20 |
발의 굳은살 없애는 비법 및 방법 (0) | 2009.05.20 |
반포한강공원 분수, 반포 한강시민공원 (0) | 2009.05.20 |
한국의 하트섬 여수 모개도 하트섬 & 전세계 낭만 하트섬 (0) | 2009.05.20 |
무좀이 생기는 이유, 발 관리, 발가락 관리 (0) | 2009.05.19 |
우울증, 내성적인 성격 고치는법 (0) | 2009.05.19 |
혈액순환에 독이되는 음식 (0) | 2009.05.19 |
평택 자연테마식물원 (0) | 2009.05.19 |
여름철 대표 과일 수박! 수박 고르는 방법과 좀더 오래 보관하는 방법 (0) | 2009.05.18 |