Scss问题 - 错误阻止我看到网站

时间:2015-01-14 02:57:04

标签: html css sass zurb-foundation

当我保存index.html文件时,我在控制台中收到以下错误:

错误sass / _settings.scss(第9行:“...... r-set defaults:expected”之后的CSS无效:“,”是“$ base-font-size ...”第9行来自sass / app.scss第2行的sass / _settings.scss

刷新index.html页面时也出现此错误,并且所有样式都已损坏。我正在使用指南针基础。

以下是第1 - 9行的

//
// Foundation Variables
//

$top

// The default font-size is set to 100% of the browser style sheet (usually 16px)
// for compatibility with browser-based text zoom or user-set defaults.
$base-font-size: 100% !default;

// $base-line-height is 24px while $base-font-size is 16px
// $base-line-height: 150%;

// This is the default html and body font-size for the base em value.

有人可以帮忙吗?谢谢。

1 个答案:

答案 0 :(得分:2)

问题是你的$ top变量。规则没有结尾;。所以,这是一个无效的语法问题。

$top: 1;

...将解决您的问题。当然,您需要删除变量,或根据需要指定适当的值。