Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 hsl() 声明 div 的边界,如下所示:
border: 2px solid hsl(0,200,105);
我使用的是 Firefox 3.5,根本没有呈现边框。如果将 hsl() 替换为 rgb(),则相同的代码可以完美运行
我在某处读到 Firefox 支持 hsl() 和 hsla()
难道我做错了什么?
如果不支持 hsl(),是否有人有任何代码可以将 hsl 转换为 rgb?
根据第一个 Google 结果和CSS 规范,语法应该是:
hsl(240, 100%, 50%);
同一篇文章也有转换器:http: //monc.se/kitchen/stew/hsl/