我花了很长时间才开始工作,这一直是噩梦,一般来说,我所有的宝石都准备好了-老实说,我讨厌每一分钟,我知道我还没有做好准备-我只是在等待一些东西打破。

无论如何,我的问题是我怎么会显示背景网格?

这是我的无礼

////////////////////////////////
/// SET UP SINGULARTITY GRID ///
///////////////////////////////
@include add-grid(12)
@include add-gutter(1/3)
@include add-gutter-style("split")
@include sgs-change("debug",true)
$bg-color: #fff

.container
  //@include background-grid
  margin: 0 auto
  min-height: 100%

div
  height: 100%

body

  height: 100%
  margin: 0
  padding: 0
  background: $bg-color


当我取消注释背景网格时,它会破裂,并且在输出中得到此提示

>>> Compass is watching for changes. Press Ctrl-C to Stop.
     info sass/app.sass was modified
    error sass/app.sass (Line 172 of _background-grid.scss: Function column-count finished without @return)
identical css/app.css
     info sass/app.sass was modified
overwrite css/app.css
     info sass/app.sass was modified
    error sass/app.sass (Line 26 of _images.scss: wrong number of arguments (25 for 1..2) for `_linear-gradient')
overwrite css/app.css


请帮助,以便我可以开始开发上周开始的网站!

谢谢

最佳答案

我很久以前写了一个解释。您应该能够在singularitygs标记中找到它。我改回susus 2,因为它工作良好并且文档非常好。 Singularitygs非常好,但是文档不够完善。如果深入研究singularitygs gem(无论哪个版本)的子目录,您会发现很多示例会有所帮助。我相信,由于去年的一些合作,如今BTW,susy 2和singularitygs 1.2.0看起来非常相似。

关于sass - 奇异背景网格未显示,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22580690/

10-13 01:07