1body {
2 /* this changes the page's background to green */
3 background-color: green;
4}
1/* To apply color to background you have to use 'background-color' property and value of property is color name. */
2html,body {
3 background-color: blue;
4}