猪猪番长2020-03-19
如何在SASS中表示直接后代CSS规则?
例如
body > div { ... }
似乎无法在文档中找到它:http : //sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html
您应该能够
body >div property:value
You may have to escape the > with a backslash \.
>
\
Newest Answer
您应该能够
You may have to escape the
>
with a backslash\
.