CSS) css 외부 참조
1. css 외부참조 (가능하면 이 방식을 추천) html Hello link 태그 내의 rel="관계를 명시" href="파일 위치" css /* common.css */ div { color: red; font-size: 20px; font-weight: bold; } 2. @import 방식 Css @import를 이용하여 외부문서로 css를 불러와 적용하는 방식 html Hello css /* common1.css */ @import url("./common2.css"); 아래의 common2.css파일을 import한다. css에서 다른 css를 @import가 가능하다. css /* common2.css */ div { color: red; font-size: 20px; font-weight:..
HTML CSS JS
2021. 7. 28. 07:18
공지사항