Q:

css change background color of page


body {
  background-color: lightblue;
}
 
10
<body bgcolor="some color">
 HTML goes here
</body>
3
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
/* 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

New to Communities?

Join the community