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

เพิ่มเอฟเฟกต์เบลอให้กับเงาด้วย CSS


หากต้องการเพิ่มเอฟเฟกต์เบลอให้กับเงา ให้ใช้คุณสมบัติ box-shadow

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

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         h2 {
            box-shadow: 10px 10px 7px green;
            height: 50px;
            background-color: yellow;
         }
      </style>
   </head>
   <body>
      <h2>Heading Two</h2>
      <p>Above heading has shadow.<p>
   </body>
</html>