[CSS] ul, li 등 줄 간격 맞추기
페이지 정보
작성자 관리자 작성일15-07-01 15:31 조회11,198회 댓글0건본문
줄간격(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>
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>
댓글목록
등록된 댓글이 없습니다.