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

การใช้คุณสมบัติ text-shadow ใน CSS


เงาข้อความ คุณสมบัติใช้เพื่อกำหนดเงาข้อความรอบข้อความ คุณสามารถลองเรียกใช้รหัสต่อไปนี้เพื่อตั้งค่า text-shadow คุณสมบัติ:

ตัวอย่าง

<html>
   <head>
   </head>
   <body>
      <p style = "text-shadow:3px 2px 5px red;">
         If your browser supports the CSS text-shadow property, this text will have a red shadow.
      </p>
   </body>
</html>