I’m working on a pretty simple CSS experiment on jsfiddle and I can’t seem to set the background color of the body to something different. I’m pulling in the source code of Bootstrap 1.3 before I enter my custom CSS, but it would seem that adding
html, body {
background-color: #000000;
}
would change the background color to black, but it’s not. What’s going on here?
In CSS comments are formated with
/* comment */.The comment width which you introduce your custom CSS is wrong (
// BEGIN CUSTOM CSS). This leads to a false selector which brakes block where you set thebackground-color.