"HTML에 CSS를 적용하는 방식 3가지"의 두 판 사이의 차이

53번째 줄: 53번째 줄:
==(방법 4: CSS 임포트)==
==(방법 4: CSS 임포트)==
{{참고|CSS에서 CSS 임포트}}
{{참고|CSS에서 CSS 임포트}}
<source lang='html5'>
 
<head>
{{소스헤더|mystyle.css}}
<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>
</source>
;mystyle.css
<source lang='css'>
<source lang='css'>
#hello1 {
#hello1 {
74번째 줄: 63번째 줄:
   color: green;
   color: green;
}
}
</source>
{{소스헤더|index.html}}
<source lang='html5'>
<style type='text/css'>
@import url("mystyle.css");
</style>
<link rel="stylesheet" href="mystyle.css">
<p id='hello1'>안녕하세요.</p>
<p id='hello2'>Hello.</p>
</source>
</source>



2021년 4월 14일 (수) 21:25 판

1 개요

Three Ways to Insert CSS
HTML에 CSS를 기입하는 방식 3가지 + 1
HTML에 CSS를 삽입하는 방식 3가지 + 1
HTML에 CSS를 적용하는 방식 3가지 + 1
  • 정확히는 HTML에 적용하는 방식 3가지 + CSS에 적용하는 방식 1가지

2 방법 1: 인라인 방식

  • 해당 태그의 style 속성에 넣는 방식
<p style="color:red; background-color:yellow;">안녕하세요.</p>
<p style="color:green;">Hello.</p>

3 방법 2: 내부 스타일 시트

<style>
#hello1 {
  color: red;
  background-color: yellow;
}
#hello2 {
  color: green;
}
</style>

<p id='hello1'>안녕하세요</p>
<p id='hello2'>Hello.</p>

4 방법 3: 외부 스타일 시트

  • link 태그를 사용하여 별도의 css 파일을 연결하는 방식
mystyle.css
#hello1 {
  color: red;
  background-color: yellow;
}
#hello2 {
  color: green;
}
index.html
<link rel="stylesheet" href="mystyle.css">

<p id='hello1'>안녕하세요.</p>
<p id='hello2'>Hello.</p>

5 (방법 4: CSS 임포트)

mystyle.css
#hello1 {
  color: red;
  background-color: yellow;
}
#hello2 {
  color: green;
}
index.html
<style type='text/css'>
@import url("mystyle.css");
</style>
<link rel="stylesheet" href="mystyle.css">

<p id='hello1'>안녕하세요.</p>
<p id='hello2'>Hello.</p>

6 같이 보기

7 참고

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