본문 바로가기

Development/Coding

Jade 템플릿 사용시 IE 예외 처리

jade 템플릿 사용시 브라우저에 따라 CSS 를 다르게 적용해야할 경우 사용할 수 있는 코드


//if lt IE 9
    link(rel='stylesheet', href='/stylesheets/onweekend-lagacy.css')
//if gte IE 9
    link(rel='stylesheet', href='/stylesheets/onweekend-ie.css?20120919')
//[if !IE]<!-->
    link(rel='stylesheet', href='/stylesheets/onweekend.css?20120919')
    <!--<![endif]



위 순서대로 IE8 이하,

IE9 이상을 위한 코드,

그외 non-IE 브라우저 코드


주의해야할 점은 밑줄 친 부분입니다.