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.
我的红宝石代码中有一串指南针样式。我想把它转换成一个css字符串。我有 config.rb 的值作为哈希值。
如何通过函数调用将字符串格式的指南针转换为 css(字符串)?
是的,你可以这样做:
require 'sass' scss_string = '@mixin test{width: auto}; div {@include test}' print Sass::compile(scss_string)
这将输出:
div { width: auto; }
在这里,您可以获得此方法的 ruby 文档的链接,其中包含有关如何自定义它的信息。