실무에서 익스플로러 구버전 호환성을 위해 CSS를 작성해야 할 경우 귀찮지만 퀵하게 적용해보자. <!--[if lt IE 9]> <link rel="stylesheet" type="text/css" href="css/ie8.css" /> <![endif]--> 해당 ie8.css파일은 ie9미만의 버전에서만 적용된다 해당 link 는 가장 마지막 순서에 첨부하는게 좋다
실무에서 익스플로러 구버전 호환성을 위해 CSS를 작성해야 할 경우 귀찮지만 퀵하게 적용해보자.
<!--[if lt IE 9]> <link rel="stylesheet" type="text/css" href="css/ie8.css" /> <![endif]-->
해당 ie8.css파일은 ie9미만의 버전에서만 적용된다 해당 link 는 가장 마지막 순서에 첨부하는게 좋다