BACKGROUND-POSITION Property In CSS
background-position Property in CSS
background-position property Declares the position of a background image.
Possible Value:
Lengths or percentages for the x and y positions, or one of the predefined values: top left top center top right center left center center center right bottom left bottom center bottom right
Examplediv { background-position:10px 50px; }
div { background-position:bottom right; }