作者热门文章
- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
是否有任何好的实践或工具可以合并相似的选择器并优化 SCSS 源?
例如有这个:
#left .menu
{
//Content a
}
#left .menu span
{
//Content b
}
#left .menu
{
//Content c
}
变成这样:
#left .menu
{
//Content a
//Content c
span
{
//Content b
}
}
手动执行此操作非常乏味,尤其是对于结构可能不那么明显的较大样式表。人们可以花更多的精力来编写更精简和更简洁的 SCSS,但它应该是一些简洁的 SCSS 工具,或者是否有我遗漏的最佳实践?
最佳答案
我同意@cimmanon 对你的问题的评论,但如果你必须这样做,请尝试 this css2sass converter .
我给它的输入:
#left .menu
{
//Content a
}
#left .menu span
{
//Content b
}
#left .menu
{
//Content c
}
输出:
#left .menu {
//Content a
span {
//Content b
}
//Content c
}
关于css - 有没有办法在 SASS 样式表中组合和优化选择器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15000290/
我是一名优秀的程序员,十分优秀!