Google
CSS Background-Position Property

Description:
Used to specify the position of a background image.
Syntax:
background-position: [value]
Possible Values:
  • [percentage]
  • [length]
  • inherit
  • top
  • right
  • bottom
  • left
  • center
  • [combination] ie top left
Initial Value:
0% 0%
Applies To:
All elements
Inherited:
No
Media:
Visual
Example:
body {background-image: url(/img/graphic.jpg) top center;}

body {
  background-image: url(/img/graphic.jpg);
  background-repeat: no-repeat;
  background-position: 30% 80%;
}