freeCodeCamp/guide/english/css/properties/background-property/index.md

1.1 KiB

title
Background Property

Background Property

The CSS background property allows one to declare all eight background properties at once using this a short-hand declaration1.

The background property is specified as one or more background layers, separated by commas for the following properties2:

  • background-color
  • background-image
  • background-position
  • background-size
  • background-repeat
  • background-origin
  • background-clip
  • background-attachment

Syntax1:

body {
  /* Using a <background-color> */
  background: green;
}

.error {
  /* Using a <bg-image> and <repeat-style> */
  background: url("test.jpg") repeat-y;
}

header {
  /* Using a <box> and <background-color> */
  background: border-box red;
}

.topbanner {
  /* A single image, centered and scaled */
  background: no-repeat center/80% url("../img/image.png");
}

Sources

  1. Visit MDN's Background page for more information.
  2. Visit W3School's CSS background Property page for more information.