ในการตั้งค่าประเภทของการตกแต่งที่ใช้กับข้อความ ให้ใช้คุณสมบัติ text-decoration-line ใน CSS เรามีตัวเลือกสำหรับการตกแต่งข้อความดังต่อไปนี้ -
text-decoration-line: none|underline|overline|line-through|initial|inherit;
ตัวอย่าง
<!DOCTYPE html>
<html>
<head>
<style>
.demo {
text-decoration: overline underline;
text-decoration-color: blue;
}
</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> ผลลัพธ์

ตัวอย่าง
เรามาดูตัวอย่างอื่นกัน −
<!DOCTYPE html>
<html>
<head>
<style>
span {
text-decoration: line-through;
text-decoration-color: blue;
}
.demo2 {
text-decoration: underline;
text-decoration-color: yellow;
}
</style>
</head>
<body>
<h1>Details</h1>
<p class="demo">Examination Center near <span>XYZ College</span> ABC College.</p>
<p class="demo2">Exam begins at 11AM.</p>
</body>
</html> ผลลัพธ์
