반응형
Word Spacing 단어 간격
이 word-spacing속성은 텍스트의 단어 사이 간격을 지정하는 데 사용됩니다.
다음 예제에서는 단어 사이의 간격을 늘리거나 줄이는 방법을 보여줍니다.
Example
h1 {
word-spacing: 10px;
}
h2 {
word-spacing: -5px;
}
<!DOCTYPE html>
<html>
<head>
<style>
h1 {
word-spacing: 10px;
}
h2 {
word-spacing: -5px;
}
</style>
</head>
<body>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
</body>
</html>
반응형
'IT > css' 카테고리의 다른 글
css Font Family 글꼴 모음 (0) | 2017.02.19 |
---|---|
css Text Shadow 문자 그림자 (0) | 2017.02.19 |
css Line Height 라인 높이 (0) | 2017.02.17 |
css Letter Spacing 글자 간격 (0) | 2017.02.15 |
css Text Indentation 텍스트 들여 쓰기 (0) | 2017.02.14 |