1.1 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.1 KiB
		
	
	
	
	
	
	
	
title
| 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");
}