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

สร้างเงาเรืองแสงนีออนสีแดงโดยใช้ CSS


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

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         h1 {
            text-shadow: 0 0 4px #FF0000;
         }
      </style>
   </head>
   <body>
      <h1>Heading One</h1>
      <p>Above heading has a read neon glow shadow effect.</p>
   </body>
</html>