Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

ตกแต่งข้อความใน CSS


ในการตกแต่งข้อความใน CSS ให้ใช้คุณสมบัติ text-decoration ตัวอย่างต่อไปนี้สาธิตวิธีการตกแต่งข้อความ ค่าที่เป็นไปได้คือ none, underline, overline, line-through, blink.

<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>