본문 바로가기

html / javascript / css

IE 버젼별 적용


<!--[if ie 6]>

<style type="text/css">
html {
    overflow: scroll;
    overflow-x: auto;
}
</style>
<![endif]-->

 

<!--[if ie 7]>

<style type="text/css">....</style>

<![endif]-->

 

gt = selects greater than  보다큰 :  if gt IE 6 ->  현재버전 > 6
lt = selects less than 보다 작은 :  if lt IE 6 ->  현재버전 < 6
gte = selects greater than or equal to 같거나 큰  :  if gte IE 6 ->  현재버전 >= 6
lte = selects less than or equal to 같거나 작은  :  if lte IE 6 ->  현재버전 <= 6

ex)

<!--[if gtie 7]>    <![endif]-->,

<!--[if ltie 7]>     <![endif]-->,

<!--[if gteie 7]>  <![endif]-->,

<!--[if lte ie 7]>  <![endif]-->,

 

<!--[if lte IE 6]>

<link href="../c_css/main6.css" rel="stylesheet" type="text/css" />

<![endif]-->