“显示”CSS属性不由SASS呈现

时间:2012-08-06 00:13:57

标签: sass

我正在使用Sass 3.1.20

test.sass:

#hello
  width: 100px
  display:none 
  background: red

%GT; sass test.sass

#hello {
  width: 100px;
  background: red; }

为什么要跳过显示属性?

1 个答案:

答案 0 :(得分:5)

看起来SASS对空白很挑剔。你在这里错过了一个空间:

#hello
  width: 100px
  display: none
          ^ right here

  background: red