반응형
글자 간격 Letter Spacing
이 letter-spacing속성은 텍스트의 문자 사이 간격을 지정하는 데 사용됩니다.
다음 예제에서는 문자 사이의 간격을 늘리거나 줄이는 방법을 보여줍니다.
Example
h1 {
letter-spacing: 3px;
}
h2 {
letter-spacing: -3px;
}
<!DOCTYPE html>
<html>
<head>
<style>
h1 {
letter-spacing: 3px;
}
h2 {
letter-spacing: -3px;
}
</style>
</head>
<body>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
</body>
</html>
반응형
'IT > css' 카테고리의 다른 글
css 텍스트 방향 Text Direction (0) | 2017.02.13 |
---|---|
css 라인 높이 Line Height (0) | 2017.02.13 |
css Text Alignment (0) | 2017.02.06 |
css Text Color (0) | 2017.02.06 |
css Outline - Shorthand property (0) | 2017.02.06 |