TIL | SASS @import(가져오기)

1116 단어 scssscss

SASS의 @import는 기본적으로 SCSS 파일을 실행한다. 또한 CSS @import 규칙으로 컴파일되는 몇 가지 상황이 존재한다.

@import "hello.css";
@import "http://hello.com/hello";
@import url(hello);
@import "hello" screen;

여러 파일 가져오기

하나의 @import로 여러 파일을 가져올 수도 있다. 파일 이름은 ,로 구분한다.

@import "header", "footer";

좋은 웹페이지 즐겨찾기