Type something to search...

CSS Backgrounds

CSS Backgrounds

CSS backgrounds can be styled with colors, images, or gradients.

Example:

body {
  background-color: lightgray;
}
div {
  background-image: url('image.jpg');
}

Next: CSS Borders →