我发现html和正文引用基本上是background:none
。
如何更改它以在我的引用之一中应用新背景?
答案 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
中定义