hsla() CSS 函数用法


要使用色相-饱和度-明度模型 (HSL) 来定义颜色,可以使用 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>

更新于:2020年6月25日

165 次浏览

开启职业生涯

获得认证通过这门课程

开始
广告