CSS text-decoration-style: 글 장식선 모양

CSS text-decoration-style: 글 장식선 모양

CSS text-decoration-style 속성은 text-decoration-line 속성이 추가하는 글 장식선의 모양을 설정합니다.

u {
  text-decoration-style: solid;
  /* text-decoration-style: dashed; */
  /* text-decoration-style: dotted; */
  /* text-decoration-style: double; */
  /* text-decoration-style: wavy; */
}
.text {
  font-size: 1.25rem;
}

u {
  text-decoration-line: underline;
}
<p class="text">
  마침내 우리는 성스러운 <u>완모식 표본</u> 앞에 당도했다.
</p>

불러오는 중...

구문

/* <color> 값 */
text-decoration-style: solid;
text-decoration-style: double;
text-decoration-style: dotted;
text-decoration-style: dashed;
text-decoration-style: wavy;

/* 전역 값 */
text-decoration-style: inherit;
text-decoration-style: initial;
text-decoration-style: revert;
text-decoration-style: revert-layer;
text-decoration-style: unset;

solid

실선입니다.

double

이중 실선입니다.

dotted

점선입니다.

dashed

대시선입니다.

wavy

구불구불한 선입니다.

예제

밑줄과 윗줄에 다른 모양 사용하기

CSS만 사용해서는 장식선의 종류마다 다른 모양을 적용할 수 없습니다. 대신 HTML 요소를 중첩하고, 각각 다른 종류와 다른 모양을 입히는 방법을 고려할 수 있습니다.

.overline {
  text-decoration-color: blue;
  text-decoration-line: overline;
}
.underline {
  text-decoration-color: red;
  text-decoration-line: underline;
  text-decoration-style: wavy;
}

.both {
  text-decoration-color: #0ecf00;
  text-decoration-line: underline overline;
  text-decoration-style: dashed;
}
<p>
  이럴 수가, <span class="overline"><span class="underline">윗선은 실선이고 밑선은 구불구불</span></span>해요!
</p>

<p>
  요소 중첩 없이는 <span class="both">같은 스타일만 사용할 수 있어요.</span>
</p>

불러오는 중...

명세

브라우저 호환성

MDN browser-compat-data
데스크톱모바일
iOSAndroid
SafariChromeFirefoxSafariChromeFirefoxSamsung Internet
text-decoration-style
wavy

같이 보기

마지막 수정:

CC BY-SA 4.0 unless otherwise noted. See LICENSE.