我正在尝试使用SASS的嵌套功能来连接两个类,但无法弄清楚如何实现它。
这是HTML:
<section class="a">
<div class="b">
<div class="c date">some date</div>
</div>
</section>
这是我目前的SASS:
.a .c
display: inline-block
.date
width: 50px
创建以下CSS:
.a .c {
display: inline-block;
}
.a .c .date {
width: 50px;
}
但这不起作用。浏览器期望“date”和“string-long”嵌套在“c”类下,而不是它们都存在于同一个HTML标记上。
我需要的是这个( .c和.date =&gt; .c.date 之间没有空格):
.a .c {
display: inline-block;
}
.a .c.date {
width: 50px;
}
我该怎么做?