This is actually a CSS sprite method.
CSS Sprites: What It Is, Why Theyre Cool, and How to Use Them
using
background-position
property
If a background image has been specified, this property indicates its original position. If only one value is specified, the second value is assumed to be the "center". If at least one value is not a keyword, then the first value is a horizontal position and the second is a vertical position. Negative and values are valid.
For example:
body { background: url("banner.jpeg") right top }
body { background: url("banner.jpeg") top center }
body { background: url("banner.jpeg") center }
body { background: url("banner.jpeg") bottom }
background CSS . : , , , -, -.
.PosBG {
background-image: url("logo.png");
background-attachment: fixed;
background-position: 100% 100%;
background-repeat: no-repeat;
}