CSS 의 import
https://developer.mozilla.org/ko/docs/Web/CSS/@import
-
@import
는 다른 스타일 시트에서 스타일 규칙을 가져온다. -
@charset규칙을 제외하고, 모든 다른 종류의 규칙보다 선행되어야 함
-
유저에이전트가 지원되지 않는 미디어 유형에 대한 리소스 검색을 하지 않을 수 있도록, 미디어에 의존한
import
규칙을 지정 할 수 있다. 즉 조건부import
가능!
@import url("fineprint.css") print;
@import url("bluish.css") speech;
@import "custom.css";
@import url("chrome://communicator/skin/");
@import "common.css" screen;
@import url("landscape.css") screen and (orientation: landscape);