Описание тега background-position
CSS property that sets the initial position, relative to the background position layer defined by background-origin for each defined background image
CSS property that sets the initial position, relative to the background position layer defined by background-origin for each defined background image.
Examples
.exampleone {
background-image: url("logo.png");
background-position: top;
}
.exampletwo {
background-image: url("logo.png");
background-position: 25% 75%;
}