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

CSS와 함께 RGBA(Red-Green-Blue-Alpha) 모델을 사용하여 색상 정의

<시간/>

CSS rgb() 함수를 사용하여 RGB 모델을 사용하여 색상을 정의합니다.

불투명도가 있는 RGB 색상을 설정하려면 CSS rgba() 함수를 사용하십시오.

예시

다음 코드를 실행하여 rgba() 함수로 색상을 설정할 수 있습니다.

<!DOCTYPE html>
<html>
   <head>
      <style>
         h1 {
            background-color:hsl(0,100%,50%);
         }
         h2 {
            background-color:rgb(0,0,255);
            color: rgb(255,255,255);
         }
         p {
            background-color:rgba(255,0,0,0.9);
         }
      </style>
   </head>
   <body>
      <h1>Red Background</h1>
      <h2>Blue Background</h2>
      <p>This is demo text!</p>
   </body>
</html>