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.
我正在尝试编写一个小的 mixin 来为 Internet Explorer 创建一个过滤器渐变。该函数称为 filter-gradient 并采用 2 个颜色参数。
当您传递 #ffffff 的颜色值时,手写笔会自动将其缩短为 #fff。有没有办法维护长手版本?
谢谢
您可以为此使用该unquote()功能,因此unquote('#ffffff')总是会给您#ffffff,而不会缩短。
unquote()
unquote('#ffffff')
#ffffff