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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
h3{text-align: center;}
span{text-decoration: line-through;}
strong{text-decoration: overline;}
.p1{text-indent: 3em;/*3글자 들여쓰기*/
text-align: justify;}/*양쪽정렬*/
.p2{text-indent: 1em;
text-align: center;}
</style>
</head>
<body>
<h3>텍스트 꾸미기</h3><hr>
<p class="p1">HTML의 태그만으로 기존의
워드 프로세서와 같이 들여쓰기, 정렬, 공백,
간격 등과 세밀한 <span>텍스트 제어</span>를
할 수 없다. </p>
<p class="p2">그러나,
<strong>스타일 시트</strong>는 이를
가능하게 한다. 들여쓰기, 정렬에 대해서
알아본다</p>
</body>
</html>
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |
CSS3의 표준단위
HTML5에서는 단위를 사용하지 않으면 CSS 스타일 오류
font-size : 3; /*오류*/
font-size : 3px; /*정상*/
'HTML&CSS' 카테고리의 다른 글
CSS 둥근 모서리 // Rounded corners (0) | 2020.03.06 |
---|---|
CSS font (0) | 2020.03.06 |
CSS 색 활용 // how to use CSS to color any HTML text element using an HTML tag, ID or class. (0) | 2020.03.05 |
CSS 선택자 // CSS selector (0) | 2020.03.05 |
HTML 문서에 CSS 스타일 시트 만드는 방법들 (0) | 2020.03.05 |