我使用Twitter bootstrap,我想将我的页面背景颜色设置为#f8f8f9 。但我认为twitter bootstrap默认的白色背景正在阻碍。
我也阅读并尝试了这些方法:
How to change twitter bootstrap background color
How to change the default background color white to something else in twitter boostrap
assign background color in twitter bootstrap 3
我试过
body{ background-color: #f8f8f9 !important};
在外部CSS文件中也是内联的。但都没有效果。
知道如何克服这个问题吗? 提前谢谢!
答案 0 :(得分:0)
少用。在那里,它只是一个需要改变的颜色变量。然后,再次编译它,你的新背景颜色应该适用。
如果您不确定从哪里开始,此生成器应该可以帮助您:http://bootstrap-live-customizer.com
答案 1 :(得分:0)
您的代码运行良好,使用十六进制ID #f8f8f9
的颜色是您在运行代码后看到的颜色。
我提供尝试此代码并查看工作与否?
body {
background-color: #3b3ba9 !important;
}
如果运作良好,那么您的代码就可以了,否则找到与此规则重叠的css规则。