중얼중얼

줄간격

noshampoo 2007. 1. 28. 18:22

줄간격(line-height)

line-height: normal | 수치 | %

줄간격은 너무 좁거나 넓어도 가독성이 떨어집니다.


[적용예]
- 태그에 지정시
<style type="text/css">
body { line-height:normal; font-family:Tahoma, 굴림 }
</style>

[적용예] - Class 이름 지정시
<style type="text/css">
.text1 { line-height:150%; font-family:Tahoma }
</style>

<div class="text1">줄간격 조절</div>


[적용예] - 태그안에 직접 지정시
<div style="line-height:150%">줄간격 조절</div>