Firefox 中的 hsl 颜色问题

发布于 2024-08-04 05:48:31 字数 268 浏览 10 评论 0原文

我正在尝试使用 hsl() 声明 div 的边框,如下所示:

border: 2px solid hsl(0,200,105);

我使用的是 Firefox 3.5,并且根本没有渲染边框。如果将 hsl() 替换为 rgb(),相同的代码可以完美运行

我在某处读到 Firefox 支持 hsl() 和 hsla()

我做错了什么吗?

如果不支持 hsl(),是否有人有任何代码将 hsl 转换为 rgb?

I am trying to declare the border of a div using hsl() like this:

border: 2px solid hsl(0,200,105);

I am using Firefox 3.5 and there is no border being rendered at all. The same code works perfectly if hsl() is replaced with rgb()

I read somewhere that Firefox supports hsl() and hsla()

Am I doing something wrong?

and if hsl() is not supported, does anybody have any code to convert hsl to rgb?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

软糖 2024-08-11 05:48:31

根据 CSS 规范,语法应该是

hsl(240, 100%, 50%);

:关于在 CSS 中使用 HSL 的精彩教程,以及 < a href="http://monc.se/kitchen/stew/hsl/" rel="nofollow noreferrer">有用的转换器。

According to the CSS specs, the syntax should be:

hsl(240, 100%, 50%);

Here's a nice tutorial on Working with HSL in CSS, and a useful converter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文