我正在使用Sass 3.1.20
test.sass:
#hello
width: 100px
display:none
background: red
%GT; sass test.sass
#hello {
width: 100px;
background: red; }
为什么要跳过显示属性?
答案 0 :(得分:5)
看起来SASS对空白很挑剔。你在这里错过了一个空间:
#hello
width: 100px
display: none
^ right here
background: red