Answers for "backgroundColor options"

CSS
9

background color css

html,body {
  background-color: red;
}
Posted by: Guest on April-25-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

Browse Popular Code Answers by Language