S.Cooper
8
Q:

backgroud color css

body {
  background-color: green;
}
22

body {
  background-color: lightblue;
}
 
10
html,body {
  background-color: red;
}
4
<body bgcolor="some color">
 HTML goes here
</body>
3
//javascript type css:
document.body.style.backgroundColor = "blue";
// or inline css:
<div style="background-color: blue;"></div>
4
/* To apply color to background you have to use 'background-color' property and value of property is color name. */
html,body {
  background-color: blue;
}
3
body {background-color: coral;}
2
 background-color: blue;
0

New to Communities?

Join the community