Search code examples
cssbackground-position

CSS: background-position: ???;


Hopefully these diagrams explain what I'm after. The red signifying the background and the grey the webpage.

Wrong

Hosted by imgur.com

Right

Hosted by imgur.com

How do I achive this? I've tried background-position: bottom right; but it's just all wrong.


Solution

  • Works fine for me:

    body
    { 
    background-image:url('smiley.gif');
    background-repeat:no-repeat;
    background-attachment:fixed;
    background-position:bottom right; 
    }
    

    And if the picture is big enough the no-repeat isn't needed. (Works even in IE6).