color는 글자 색을지정할 때 쓰는 속성
사용할 수 있는 속성은 16진수 , RGB , 색상 이름을 사용할 수 있음
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
|
<! DOCTYPE html>
<html lang = "kr" >
<head>
<meta charset = "utf-8" >
<title> 키보드와 하루 </title>
<style>
div
{
margin-top : 20px ;
}
</style>
</head>
<body>
1
<div style =' color : rgb(255,0,0) ;' >
rgb가 255,0,0인 color
</div>
2
<div style =' color : red ;' >
red인 color
</div>
3
<div style =' color : #ff0000 ;' >
16진수가 #ff0000인 color
</div>
</body>
</html>
|
[css3] text-transform - 텍스트 대·소문자 변환 (0) | 2021.03.30 |
---|---|
[css3] text-decoration - 텍스트에 줄 표시 (0) | 2021.03.29 |
[css3] font - 글꼴 속성 한꺼번에 표현 (0) | 2021.03.25 |
[css3] font-style - 글자 스타일 지정 (0) | 2021.03.24 |
[css3] font-weight - 글자 굵기 지정 (0) | 2021.03.23 |