body에다가 class를 부여하여 css selector만 이용하는 방법입니다.
가장 많이 쓰이는 IE, IE6, IE7, 그 외.. 로 예제코드 만들어 봤습니다. (실제로 저는 이렇게 해서 사용합니다.)
Conditional comments에 대해서
가장 많이 쓰이는 IE, IE6, IE7, 그 외.. 로 예제코드 만들어 봤습니다. (실제로 저는 이렇게 해서 사용합니다.)
<!--[if lte IE 6]><body class="ie ie6"><![endif]-->
<!--[if IE 7]><body class="ie ie7"><![endif]-->
<!--[if !IE]>--><body><!--<![endif]-->
<!--[if IE 7]><body class="ie ie7"><![endif]-->
<!--[if !IE]>--><body><!--<![endif]-->
#content { color: red; }
.ie #content { color: blue; }
.ie6 #content { color: pink; }
.ie7 #content { color: green; }
.ie #content { color: blue; }
.ie6 #content { color: pink; }
.ie7 #content { color: green; }
Conditional comments에 대해서
- http://msdn.microsoft.com/en-us/library/ms537512(VS.85).aspx
- http://www.quirksmode.org/css/condcom.html
'웹[기술|표준|접근] > 작은 팁' 카테고리의 다른 글
| 헤딩 제대로 사용하기(시멘틱 마크업하기). -전편- (2) | 2010/01/06 |
|---|---|
| IE7에서 text-decoration이 이상하게 나올때. (0) | 2009/02/02 |
| Conditional comments를 이용해서 CSS-Hack 안쓰고 코딩하기 (4) | 2008/11/27 |
| [JS] IE6인지 구분하기 (0) | 2008/08/20 |
| CSS Frameworks (0) | 2008/08/01 |
| CSS Editors Reviewed (0) | 2008/06/25 |
댓글을 달아 주세요
요한 사마
2008/11/30 00:16 [ ADDR : EDIT/ DEL : REPLY ]하노이 잘 다녀오3
ps. 선물 꼭 사오셈 >_<
지금도 하노이 친구들 덕분에 일하는중..
2008/11/30 12:22 [ ADDR : EDIT/ DEL ]젠장!
오홍~ 좋은데요?
2008/12/18 13:31 [ ADDR : EDIT/ DEL : REPLY ]적절한 리액션!!
2009/02/02 11:21 [ ADDR : EDIT/ DEL ]감사합니다 ㅠ,.ㅠ