สำหรับการตกแต่งข้อความใน CSS ให้ใช้คุณสมบัติ text-decoration เป็นคุณสมบัติชวเลขสำหรับคุณสมบัติต่อไปนี้ -
text-decoration-line text-decoration-color text-decoration-style
ตัวอย่าง
เรามาดูตัวอย่างการตกแต่งข้อความใน CSS −
<!DOCTYPE html> <html> <head> <style> .demo { text-decoration: overline underline; } </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> p { writing-mode: vertical-rl; text-decoration-line: overline; text-decoration-color: red; text-decoration-style: wavy; } </style> </head> <body> <h1>Demo Heading</h1> <p>This is demo text.</p> </body> </html>
ผลลัพธ์