6
Q:

how to change background color in css

body {
  background-color: green;
}
22

body {
  background-color: lightblue;
}
 
10
html,body {
  background-color: red;
}
4
body{
  background: lightblue;
}
1
/* Use the following code: */
html {background-color: #fefefe;} 
/* You can change the hexedecimal code to RGB, RGBA, name & more colors!*/
1
//javascript type css:
document.body.style.backgroundColor = "blue";
// or inline css:
<div style="background-color: blue;"></div>
4

New to Communities?

Join the community