Cyril is close, but wrong. it should be background-position: right bottom;
in general - it can use numerical values. Therefore, for background-position: right bottom; you can also write background-position: 100% 100%; and background-position: left top; will result in background-position: 0 0;
also take a look at the W3C specs: http://www.w3.org/TR/css3-background/#the-background-position
in sree comment above: this is completely wrong, left: 0px ; top:0px; left: 0px ; top:0px; refers to the positioning of the HTML element itself when using position:relative or position:absolute
edit: if you want to use multiple backgrounds, you may notice that als follows:
p[class] { background-image: url("../../image/my_image.gif"), url("../../image/my_image.gif"); background-position: left top, right bottom; background-repeat: no-repeat; }
see http://caniuse.com/#feat=multibackgrounds for cross browser support
welcomes
Tom
Thomas fellinger
source share