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

กำหนดสีโดยใช้โมเดล Hue-Saturation-Lightness-Alpha (HSLA) ด้วย CSS


ในการกำหนดสีโดยใช้โมเดล Hue-Saturation-Lightness (HSL) ด้วยความทึบ ให้ใช้เมธอด CSS hsla()

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้ฟังก์ชัน hsla() ใน CSS

<!DOCTYPE html>
<html>
   <head>
      <style>
         h1 {
            background-color:hsl(0,100%,50%);
         }
         h2 {
            background-color:hsl(192,89%,48%);
         }
         p {
            background-color:hsla(290,100%,50%,0.3);
         }
      </style>
   </head>
   <body>
      <h1>Red Background</h1>
      <h2>Blue Background</h2>
      <p>This is demo text!</p>
   </body>
</html>