selfstarter

line-height 줄의 높이를 지정하는 속성 본문

Web/Html

line-height 줄의 높이를 지정하는 속성

selfstarter 2019. 11. 26. 07:53

line-height

  • 줄의 높이를 지정. 기본값은 normal(1.2)
  • length,pixel, %, normal(1.2)로 지정할 수 있다
<head>
    <meta charset="utf-8">
    <title>jQuery</title>
    <style>
        .lineHeight {
            line-height : 1;
        }
        .lineHeight2 {
            line-height : 30%;
        }
    </style>
</head>
<body>
    <div class="lineHeight">글자높이 1<br>글자높이 1</div><br>
    <div class="lineHeight2">글자높이 30%<br>글자높이 30%</div>
</body>

'Web > Html' 카테고리의 다른 글

CSS header 부분 정리  (0) 2019.12.30
리베하얀님 HTML4, CSS1,2, 전체 초기화 CSS파일 정리  (0) 2019.12.29
Html Table 구조  (0) 2019.11.01
WEB GET, POST 차이  (0) 2019.10.28
dataTable 데이터 삭제 후 기존 페이지 유지  (0) 2019.07.12
Comments