Answers for "background color"

CSS
25

css background color

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

background color css rgb

body {
  background-color: rgb(255,255,255);
}
Posted by: Guest on April-07-2020
7

background color css

html,body {
  background-color: red;
}
Posted by: Guest on April-25-2020
4

css transparent background color

div {
 opacity:25% ; 
}
Posted by: Guest on March-21-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