letter-spacing : 글자 사이의 간격

word-spacing : 단어 사이의 간격

line-height : 줄 간격 (글자 높이 포함)



html)

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
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" 
          content="width=device-width, height=device-height, 
                     minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0">
    <title>Insert title here</title>
    <style>
    /* 
    letter-spacing: 글자사이의 간격
    word-spacing: 단어사이의 간격
    line-height: 줄간격 (글자 높이 포함)
    */
    h1 {
        letter-spacing: 0.3em;
    }
    p {
        word-spacing: 0.5em;
        font-size: 1.3em;
        line-height: 2;    /* 단위가 지정되지 않으면 배수(2배)라는 뜻 */
    }
    </style>
</head>
 
<body>
    <h1>글자 사이의 간격</h1>    
    <p>바나나 사과 딸기 복숭아 수박 파인애플 귤 오렌지 블루베리</p>
</body>
</html>
cs



결과



+ Recent posts