Answers for "create a background css"

CSS
6

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
4

background css

body {
  background: #ffffff url("img_tree.png") no-repeat fixed right top;
}
Posted by: Guest on April-29-2020

Code answers related to "create a background css"

Browse Popular Code Answers by Language