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

การใช้คุณสมบัติการตกแต่งข้อความใน CSS


คุณสมบัติการตกแต่งข้อความใช้เพื่อขีดเส้นใต้ ขีดเส้นใต้ และขีดทับข้อความ

ตัวอย่าง

ตัวอย่างต่อไปนี้สาธิตวิธีการตกแต่งข้อความ ค่าที่เป็นไปได้คือ 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>