CSS에서 CSS 임포트

Jmnote bot (토론 | 기여)님의 2017년 6월 27일 (화) 01:27 판 (봇: 자동으로 텍스트 교체 (-== 참고 자료 == +==참고==))
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

CSS에서 CSS 인클루드
한 CSS 에서 다른 CSS 임포트
include one css file into another
@import url("CSS파일경로");

2 예시[ | ]

<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;
}

3 같이 보기[ | ]

4 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}