Set a background-image (or two) for the <body> element and

PHOTO EMBED

Mon Aug 22 2022 13:51:16 GMT+0000 (Coordinated Universal Time)

Saved by @callena #css

.hero-image {
  background-image: url("photographer.jpg"); /* The image used */
  background-color: #cccccc; /* Used if the image is unavailable */
  height: 500px; /* You must set a specified height */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}

*Always set a *background-color* to be used if the image is *unavailable*.

body {
  background-image: url("img_tree.gif"), url("paper.gif");
  background-color: #cccccc;
}

*By default, a background-image is placed at the top-left corner of an element, and repeated both vertically and horizontally.
content_copyCOPY

The background property is a shorthand property for: background-color background-image background-position background-size background-repeat background-origin background-clip background-attachmen