CSS에서 텍스트를 장식하려면 text-decoration 속성을 사용하십시오. 다음 예제는 텍스트를 장식하는 방법을 보여줍니다. 가능한 값은 없음, 밑줄, 윗줄, 줄줄이, 깜박임입니다.
<html> <head> </head> <body> <p style = "text-decoration:underline;"> This will be underlined </p> <p style = "text-decoration:line-through;"> This will be striked through. </p> <p style = "text-decoration:overline;"> This will have a over line. </p> <p style = "text-decoration:blink;"> This text will have blinking effect </p> </body> </html>