Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS에서 텍스트 장식의 색상 설정

<시간/>

텍스트 장식의 색상을 설정하려면 text-decoration-color 속성을 사용하십시오 -

예시

<!DOCTYPE html>
<html>
<head>
<style>
.demo {
   text-decoration: overline;
   text-decoration-color: yellow;
}
</style>
</head>
<body>
<h1>Examination Details</h1>
<p class="demo">Exam on 20th December.</p>
<p class="demo2">Exam begins at 9AM.</p>
</body>
</html>

출력

CSS에서 텍스트 장식의 색상 설정

예시

이제 다른 예를 살펴보겠습니다 -

<!DOCTYPE html>
<html>
<head>
<style>
.demo {
   text-decoration: underline;
   text-decoration-color: orange;
}
</style>
</head>
<body>
<h1>Details</h1>
<p class="demo">Examination Center near ABC College.</p>
<p class="demo2">Exam begins at 9AM.</p>
</body>
</html>

출력

CSS에서 텍스트 장식의 색상 설정