Answers for "background colored"

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
1

background color

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

Browse Popular Code Answers by Language