Answers for "background color name"

CSS
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

Code answers related to "background color name"

Browse Popular Code Answers by Language