HTML_CSS_010_TAG_text-decoration

AMJ·2023년 4월 4일
0

html_css_js_log

목록 보기
10/59

text-decoration

  • 태그의 선속성 옵션 적용

    옵션 선택

    • none : 선을 만들지 않습니다.
    • line-through : 글자 중간에 선을 만듭니다.
    • overline : 글자 위에 선을 만듭니다.
    • underline : 글자 아래에 선을 만듭니다.
    • initial : 기본값으로 설정합니다.
    • inherit : 부모 요소의 속성값을 상속받습니다.
div {
	text-decoration: none;
    text-decoration: line-through;
    text-decoration: overline;
	text-decoration: underline;	
	text-decoration: overline underline;4
    text-decoration: overline underline line-through;
}

↓ 옵션 적용

CSS Reference

text-decoration: none;

text-decoration: line-through;

text-decoration: overline;

text-decoration: underline;

text-decoration: overline underline;

text-decoration: overline underline line-through;

profile
재미있는 것들

0개의 댓글