프로그래밍/html
html 익스플로러 버전에 따라 다르게 출력<!--[if 기호 IE버전 ]> <![endif]-->
-현's-
2014. 12. 1. 14:13
반응형
●<!--[if 영어기호 IE 버전]>내용<![endif]-->
●초과,미만,이상,이하
> : greater than (gt)
< : less than (lt)
>= : greater than or equals (gte)
<= : less than or equals (lte)
● ie9에서만 표시
<!--[if IE 9]>
<![endif]-->
●ie9이상에서만 표시
<!--[if gte IE 9]>
<![endif]-->
●ie9초과에서만 표시
<!--[if gt IE 9]>
<![endif]-->
●ie9이하에서만 표시
<!--[if lte IE 9]>
<![endif]-->
●ie9미만에서만 표시
<!--[if lt IE 9]>
<![endif]-->
반응형