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.
所以这是我有的 ul in haml
.content .testing .testing-ul2 %ul %li a b c .testing-ul2 %ul %li d e f
• 美国广播公司
• 定义
我如何摆脱 sass 中的要点?
有效的 CSS 不是有效的 SASS,它是有效的 SCSS。
对于有效的 SASS,您需要去掉花括号和分号。
这就是你想要的:
.content .testing ul list-style: none
有效的 CSS 是有效的 SCSS:
ul { list-style: none; }
使选择器尽可能具体(.testing ul等)。
.testing ul