Answers for "set background color"

26

css background color

body {
  background-color: green;
}
Posted by: Guest on February-03-2020
3

how to change the page background in css

body {
  /* this changes the page's background to green  */
  background-color: green;
}
Posted by: Guest on June-24-2020
5

html how to change background color

<body style="background-color:powderblue;">
<p style="background-color:tomato;">This paragraph has a red background.</p>
</body>
Posted by: Guest on September-04-2020
5

background color

//javascript type css:
document.body.style.backgroundColor = "blue";
// or inline css:
<div style="background-color: blue;"></div>
Posted by: Guest on July-03-2020
0

background color

document.getElementById('id').style.backgroundColor = 'green' ;
Posted by: Guest on May-23-2021

Browse Popular Code Answers by Language