Common Styles

Background image

CSS

yourSelector {
  background-image: url("your-image-file");
}

CSS example

/* sets the page's background image to the file image.png */
body {
  background-image: url("image.png");
}

JavaScript

yourVariable.style.backgroundImage = `url("your-image-file")`