같은 태그로 선언된 요소라고 할지라도 다른 스타일을 적용하고자 할 경우에 사용
즉 태그에 상관없이 특정 부분에 스타일을 적용
class를 선언하기 위해서는 마침표(.)를 먼저 쓰고 다음에 사용하고자 하는 클래스명을 선언
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<!
DOCTYPE
html>
<html lang
=
"kr"
>
<head>
<meta charset
=
"utf-8"
>
<title>
키보드와 하루
</title>
<style>
1
.textcolor_blue
{
color
:
blue
;
}
2
.textcolor_red
{
color
:
red
;
}
3
.border
{
border
:
1px solid #000
;
background
:
red
;
}
4
h2
{
font-weight
:
bold
;
background
:
yellow
;
}
5
h2.textcolor_red
{
font-size
:
20px
;
background
:
blue
;
}
</style>
</head>
<body>
1번 적용
<p class
=
"textcolor_blue"
>
textcolor_blue 클래스 적용된 요소
</p>
4번만 적용
<h2>
클래스 적용이 없는 순수한 h2 요소
</h2>
2,3,4,5번 적용
<h2 class
=
"textcolor_red border"
>
textcolor_red 클래스와 border 클래스가 적용된 h2 요소
</h2>
</body>
</html>
|
[css3] !important - 높은 우선 순위 스타일 적용 (0) | 2021.03.17 |
---|---|
[css3] ID 선택자 - 한번만 스타일 적용 (0) | 2021.03.16 |
[css3] * , tag - 전체 선택자와 태그 선택자 (0) | 2021.03.12 |
[css3] 내부 스타일과 외부스타일(.css) (0) | 2021.03.10 |
[css3] /* */ - 스타일에서 주석처리 (0) | 2021.03.09 |