Answers for "css 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
1

css change background color of page

/* Use the following code: */
html {background-color: #fefefe;} 
/* You can change the hexedecimal code to RGB, RGBA, name & more colors!*/
Posted by: Guest on June-21-2020
1

css background color

body {background-color: coral;}
Posted by: Guest on August-16-2020

Browse Popular Code Answers by Language