Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- apache gzip
- JavaScript
- R프로그래밍
- release unsigned
- CSS사용법
- spring
- tomcat
- Firebase
- Android Apk 이름 변경
- java error
- FLUTTER
- MySQL
- Eclipse
- html
- DataTable
- jQuery
- Kotlin
- Java
- Program type already present
- 안드로이드
- css
- fragment
- error
- Android
- android fragment
- release Apk
- Exception
- Android Apk
- android error
- Android Apk 이름
Archives
- Today
- Total
selfstarter
line-height 줄의 높이를 지정하는 속성 본문
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