如何更改Foundation Zurb背景?

时间:2013-08-02 14:14:24

标签: html css sass zurb-foundation

我发现html和正文引用基本上是background:none。 如何更改它以在我的引用之一中应用新背景?

3 个答案:

答案 0 :(得分:0)

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

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

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

希望它会对你有所帮助。

答案 1 :(得分:0)

基础4的两个样式表中都有两个background标记:

尝试编辑:

<强> CSS / foudation.css

body {
  background: white;
  ...
}

<强> CSS / normalize.css

html{
  background: #fff;
  ...
}

答案 2 :(得分:0)

如果使用带有SASS的基础,请将此添加到./scss/app.scss:

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

其中$ white - 变量在./scss/_settings.scss

中定义