text-decoration-color 속성
text-decoration-color 속성은
텍스트의 선 색상을 지정합니다.
이 속성은
text-decoration-line 속성과
text-decoration-style 속성과 함께 사용해야 합니다.
이러한 속성들은
text-decoration 속성의 기능을 확장하며,
더 발전된 대안 역할을 합니다.
속성 값은 색상 단위 중
어떤 것이든 사용할 수 있습니다.
구문
선택자 {
text-decoration-color: 모든 CSS 형식의 색상;
}
기본값: 텍스트와 동일한 색상.
예제
text-decoration-color 속성이
red 값으로 설정되어 있으므로,
현재 텍스트에는 빨간색 아래줄이 표시됩니다:
<div id="elem">
Lorem ipsum dolor sit amet.
</div>
#elem {
text-decoration-style: solid;
text-decoration-color: red;
text-decoration-line: underline;
}
: