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

 
(다른 사용자 한 명의 중간 판 하나는 보이지 않습니다)
8번째 줄: 8번째 줄:
==방법 1: 인라인 방식==
==방법 1: 인라인 방식==
* 해당 태그의 style 속성에 넣는 방식
* 해당 태그의 style 속성에 넣는 방식
<source lang='html5' run>
<syntaxhighlight lang='html5' run>
<p style="color:red; background-color:yellow;">안녕하세요.</p>
<p style="color:red; background-color:yellow;">안녕하세요.</p>
<p style="color:green;">Hello.</p>
<p style="color:green;">Hello.</p>
</source>
</syntaxhighlight>


==방법 2: 내부 스타일 시트==
==방법 2: 내부 스타일 시트==
* [[style 태그]] 내부에 기입하는 방식
* [[style 태그]] 내부에 기입하는 방식
<source lang='html5' run>
<syntaxhighlight lang='html5' run>
<style>
<style>
#hello1 {
#hello1 {
28번째 줄: 28번째 줄:
<p id='hello1'>안녕하세요</p>
<p id='hello1'>안녕하세요</p>
<p id='hello2'>Hello.</p>
<p id='hello2'>Hello.</p>
</source>
</syntaxhighlight>


==방법 3: 외부 스타일 시트==
==방법 3: 외부 스타일 시트 ==
* [[link 태그]]를 사용하여 별도의 css 파일을 연결하는 방식
* [[link 태그]]를 사용하여 별도의 css 파일을 연결하는 방식


{{소스헤더|mystyle.css}}
{{소스헤더|mystyle.css}}
<source lang='css'>
<syntaxhighlight lang='css'>
#hello1 {
#hello1 {
   color: red;
   color: red;
42번째 줄: 42번째 줄:
   color: green;
   color: green;
}
}
</source>
</syntaxhighlight>
{{소스헤더|index.html}}
{{소스헤더|index.html}}
<source lang='html5'>
<syntaxhighlight lang='html5'>
<link rel="stylesheet" href="mystyle.css">
<link rel="stylesheet" href="mystyle.css">


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


==(방법 4: CSS 임포트)==
==(방법 4: CSS 임포트)==
55번째 줄: 55번째 줄:


{{소스헤더|mystyle.css}}
{{소스헤더|mystyle.css}}
<source lang='css'>
<syntaxhighlight lang='css'>
#hello1 {
#hello1 {
   color: red;
   color: red;
63번째 줄: 63번째 줄:
   color: green;
   color: green;
}
}
</source>
</syntaxhighlight>


{{소스헤더|index.html}}
{{소스헤더|index.html}}
<source lang='html5'>
<syntaxhighlight lang='html5'>
<style type='text/css'>
<style type='text/css'>
@import url("mystyle.css");
@import url("mystyle.css");
73번째 줄: 73번째 줄:
<p id='hello1'>안녕하세요.</p>
<p id='hello1'>안녕하세요.</p>
<p id='hello2'>Hello.</p>
<p id='hello2'>Hello.</p>
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2021년 6월 5일 (토) 17:35 기준 최신판

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>

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

6 같이 보기[ | ]

7 참고[ | ]

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