我是sass的新手,我在.sass文件中定义了h1,h2,h3,我想做类似以下的事情:
h1 {
font-size: 25px;
}
.section {
h1 { font-size: h1.font-size - 5px; }
}
我知道语法不正确,但我认为你得到了主旨。真的很感激。
答案 0 :(得分:4)
您必须将值存储在变量中:
$h1-font-size: 25px;
h1 {
font-size: $h1-font-size;
.section & {
font-size: $h1-font-size - 5;
}
}
这将产生以下CSS:
h1 { font-size: 25px; }
.section h1 { font-size: 20px; }