Answers for "div background color"

CSS
3

how to change the page background in css

body {
  /* this changes the page's background to green  */
  background-color: green;
}
Posted by: Guest on June-24-2020
9

background color css

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

turn a div green

div {
	background-color: green;
}
Posted by: Guest on February-24-2020
2

how to change background color in css

body{
  background: lightblue;
}
Posted by: Guest on July-27-2020
5

background css

/* Color (Example: red): */
html,body {
  background-color: red;
}

/* Image (Example: your.picture): */
html,body {
  background-image: url("your.picture");
}
Posted by: Guest on April-25-2020

Code answers related to "div background color"

Browse Popular Code Answers by Language