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 브라우저 코드
주의해야할 점은 밑줄 친 부분입니다.
'Development > Coding' 카테고리의 다른 글
PHP 변수 초기화 및 조건부 할당 (0) | 2012.11.08 |
---|---|
KCP 결제 모듈 적용기 (0) | 2012.10.11 |
node.js 로 구현한 국내 도메인 리스트 구하기 (2) | 2012.09.19 |
node.js 파일 작업 팁 (0) | 2012.09.18 |
DIV 안의 엘리먼트 세로 정렬 (0) | 2012.03.09 |