본문 바로가기
Web Programing!/HTML / CSS

[CSS] 브라우져 종류별로 css 적용하기

by 어설픈봉봉이 2011. 9. 6.
반응형
SMALL





<!--[if IE 6]><link rel="stylesheet" href="../css/ie6.css" type="text/css" /><![endif]-->
<!--[if IE 7]><link rel="stylesheet" href="../css/ie7.css" type="text/css" /><![endif]-->
<!--[if IE 8]><link rel="stylesheet" href="../css/ie8.css" type="text/css" /><![endif]-->
<![if !IE]><link rel="stylesheet" href="../css/common.css" type="text/css" /><![endif]>
 

: IE 버전별로 CSS를 적용하고 만약 IE가 아니라면(사파리, 크롬, 파이어폭스) common.css를 적용


반응형