使用带有 CSS 的 Red-Green-Blue-Alpha 模型 (RGBA) 定义颜色

使用 CSSrgb()函数使用 RGB 模型定义颜色。

使用 CSSrgba()函数设置具有不透明度的 RGB 颜色。

示例

您可以尝试运行以下代码来使用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>

以上是 使用带有 CSS 的 Red-Green-Blue-Alpha 模型 (RGBA) 定义颜色 的全部内容, 来源链接: utcz.com/z/351651.html

回到顶部