标签: css sass
我有一个varibale
$height: 40px;
现在,我用它作为
.exmp{ height: $height; }
现在,我想在其他类
.exmp2{ height: $height; // here the height must be different. I want to keep 100px }
我怎么能做到这一点?请帮帮我。