我正在尝试制作背景色,但我得到的只是页脚上方的彩色矩形。
实例:http://solutionsmvo.nazwa.pl/test/
body, html {
font-family: Helvetica, Arial, sans-serif;
width: 100%; height: 100%;
background-color: #582c2c;
}
我做错了什么?
答案 0 :(得分:1)
您的Bootstrap.min.css
已包含在style.css
下方,导致覆盖background-color: #582c2c;
CSS包含的顺序应如下所示。
<link href="bootstrap.min.css">
<link href="style.css">
答案 1 :(得分:1)
这是因为Bootstrap.min.css中的body上有background-color属性,body上的background-color是#fff,所以从Bootstrap.min.css中删除该行...
答案 2 :(得分:0)
试试这个:
body, html {
font-family: Helvetica, Arial, sans-serif;
width: 100%; height: 100%;
background-color: #582c2c !important;
}