Answers for "how to change background css"

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
1

change background CSS

body {
    background-image: url("Enter URL image file here");
    background-color: #e9e9e9;
}
Posted by: Guest on October-07-2021

Code answers related to "how to change background css"

Browse Popular Code Answers by Language