티스토리 뷰
HTML CSS JS
CSS) text-decoration text-decoration:line-through; text-decoration:underline text-decoration:overline;
Programmers 2021. 8. 24. 07:15반응형
1) text-decoration
문자의 장신(line)을 지정
속성 값
값 | 의미 | 기본값 |
none | 선 없음 | none |
underline | 밑줄을 지정 | |
overline | 윗줄을 지정 | |
line-through | 중앙 선(가로지르는)을 지정 |
html
<div class="heropy1">HEROPY1</div><br/>
<div class="heropy2">HEROPY2</div><br/>
<div class="heropy3">HEROPY3</div><br/>
<div class="heropy4">HEROPY4</div>
css
.heropy1 {
font-size:80px;
text-decoration:none;
}
.heropy2 {
font-size:80px;
text-decoration:underline;
}
.heropy3 {
font-size:80px;
text-decoration:overline;
}
.heropy4 {
font-size:80px;
text-decoration:line-through;
}
출력결과
반응형
'HTML CSS JS' 카테고리의 다른 글
CSS) font-family float clear .clearfix::after { content: ""; clear: both; display: block;} (0) | 2021.08.24 |
---|---|
CSS) letter-spacing, word-spacing (0) | 2021.08.24 |
CSS) text-indent, text-indent: -9999px; (0) | 2021.08.23 |
CSS) 문자(Text) 관련 속성, color (0) | 2021.08.23 |
CSS) font-family (0) | 2021.08.23 |
댓글
공지사항