Answers for "how to style background css"

CSS
4

make image background of div

background-image: url("photographer.jpg");
Posted by: Guest on April-03-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 "how to style background css"

Browse Popular Code Answers by Language