Answers for "how to put a color in the background"

CSS
2

how to add a background color in css

body {
    background-color: red;
}
Posted by: Guest on November-15-2021
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

Code answers related to "how to put a color in the background"

Browse Popular Code Answers by Language