Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS에서 Hue-Saturation-Lightness-Alpha 모델(HSLA)을 사용하여 색상 정의

<시간/>

HSL(Hue-Saturation-Lightness) 모델과 불투명도를 사용하여 색상을 정의하려면 hsla() CSS 메서드를 사용하세요.

예시

CSS에서 hsla() 함수를 구현하기 위해 다음 코드를 실행할 수 있습니다.

<!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>