개요
- CSS에서 CSS 인클루드
- 한 CSS 에서 다른 CSS 임포트
- include one css file into another
@import url("CSS파일경로");
예시
<head>
<style type='text/css'>
@import url("mystyle.css");
</style>
<link rel="stylesheet" href="mystyle.css">
</head>
<body>
<p id='hello1'>안녕하세요.</p>
<p id='hello2'>Hello.</p>
</body>
- mystyle.css
#hello1 {
color: red;
background-color: yellow;
}
#hello2 {
color: green;
}