The background position property actually moves the background image relative to the element. For an instance, if you use {background-position: 0 0} , this means that you are positioning (0,0) , which is at the top left of your image, in the upper left corner of your html element.
-ve left offset means you are moving the image left, and -ve top offset means moving the image up.
In the above code, the first 0 refers to left offset , and the second 0 refers to top offset ..
{background-position: -209px -2px}
means you move the image 209px to the left and 2px up.
Hope this helps you.
Sushanta patel
source share