
익스플로러 X 버전 이하에서만 적용할 수 있는 CSS파일을 첨부할 수 있다.
[index.html]
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="css/ie8.css" />
<![endif]-->
[ie.css]
.nav-item {
float : left;
margin-top : 20px;
}
/*flex를 대체할 코드를 넣는다*/
css폴더내의 ie8.css 라는 파일은 인터넷 익스플로러 9 미만에서만 적용된다.
[if lt IE 9] : 익스플로러 10 미만에서만 적용된다.
[참고]