html + css + javascript

[css] link, import

sping2 2024. 2. 7. 21:28

여러 개의 웹페이지가 같은 css를 사용한다면 중복을 제거할 수 있다.

별도의 .css 파일을 만들고, html에서 그 파일을 link한다.

 

 

link

 

 

 

 

import

 

 

 

 

 

link와 import의 기능은 같다.

link: html 안에서 css를 로딩할 때 사용

import: css 안에서 다른 css를 로딩할 때 사용

'html + css + javascript' 카테고리의 다른 글

[css] preprocessor, fontello  (1) 2024.02.07
[css] minify(코드 경량화)  (0) 2024.02.07
[css] transition  (0) 2024.02.07
[css] transform  (1) 2024.02.07
[css] blend  (0) 2024.02.07