SASS框中的字体大小不同?

时间:2018-01-30 19:30:05

标签: html css sass

我有一个用HTML和SASS制作的盒子。 html看起来像这样:

{{1}}

关键的SASS看起来像这样:

{{1}}

但是我希望第二行(中断后)与第一行的字体大小不同!我不知道怎么做。感谢你的帮助!

1 个答案:

答案 0 :(得分:0)

所以有一种方法可以定位CSS中的第一行,以便针对第二行执行以下操作:

li span {
    /* this targets the whole span but just override it for the first line below */
    font-size: 20px;
}

li span:first-line {
    font-size: 30px;
}