BACKGROUND Property In CSS
background Property in CSS
background property Used as a shorthand property to set all the background properties at once.
Possible Value:
Separate values by a space in the following order (those that are not defined will use inherited or default initial values): background-color background-image background-repeat background-attachment background-position
Examplediv { background:green url(image.jpg) no-repeat
fixed center center; }
div { background:url(image.jpg) fixed; }