본문 바로가기

HTML&CSS

CSS 텍스트 꾸미기 // how to decorate text in CSS

 

아래에 코드있어요!

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>
    <p><a href="http://naver.com" style="text-decoration: non;">네이버</a></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의 표준단위

주로 em, px 많이 쓸거에요~! pt도요!

HTML5에서는 단위를 사용하지 않으면 CSS 스타일 오류

font-size : 3; /*오류*/

font-size : 3px; /*정상*/