0

我发现 html 和 body 引用基本上得到了background:none. 我如何更改它以在我的报价中应用新背景?

4

3 回答 3

0

If using foundation with SASS add this to ./scss/app.scss :

body, html {
  background-color: $white !important;
}

where $white - variable defined in ./scss/_settings.scss

于 2015-02-19T15:35:44.087 回答
0

例如,如果您想为您的身体设置灰色背景,请输入以下代码:

body {
    background-color: #CCCCCC !important;
}

!important允许您覆盖已在另一个 CSS 中定义的属性。在基金会的情况下,背景可能已经设置好了。

希望对您有所帮助。

于 2013-08-02T14:19:13.823 回答
0

backgroundFoundation 4 的两个样式表中都有两个标签:

尝试编辑:

css/基础.css

body {
  background: white;
  ...
}

css/规范化.css

html{
  background: #fff;
  ...
}
于 2013-08-02T14:25:16.207 回答