I have an image that is 1600x1200
I would like to use it as the background image for my site. The image should be static, only the content should be scrollable.
This is what i have tried:
background-image: url('blog-baggrund2.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
The problem is background-size: cover; stretches it so that the whole image is not shown, and background-size: contain; minimizes it so that it does not fit the whole screen (at least in width - height is perfect)
My own screen resolution is 1600x900
jsFiddle:
Notice all the "black" stuff from the bottom of the image is not shown.
Any suggestions?
background-size: 100%, 100%– Mr Lister Aug 15 '12 at 22:01