font-style는 글자 스타일 지정하는 속성
속성 |
설명 |
normal |
일반적인 형태 |
italic |
이탤릭체로 표시(기울어진 글꼴이 처음부터 디자인) |
oblique |
이탤릭체로 표시(원래 글꼴을 기울어지게 표시) |
속성 |
설명 |
normal |
일반적인 형태 |
italic |
이탤릭체로 표시(기울어진 글꼴이 처음부터 디자인) |
oblique |
이탤릭체로 표시(원래 글꼴을 기울어지게 표시) |
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 =' font-style : normal ;' >
normal 스타일
</div>
2
<div style =' font-style : italic ;' >
italic 스타일
</div>
3
<div style =' font-style : oblique ;' >
oblique 스타일
</div>
</body>
</html>
|
[css3] color - 글자 색 지정 (0) | 2021.03.26 |
---|---|
[css3] font - 글꼴 속성 한꺼번에 표현 (0) | 2021.03.25 |
[css3] font-weight - 글자 굵기 지정 (0) | 2021.03.23 |
[css3] font-size - 글자 크기 조절 (0) | 2021.03.22 |
[css3] font-family - 텍스트 글꼴 지정 (0) | 2021.03.19 |