IMG Method
If you want the image to be self-contained, use this CSS:
#selector {
width:100%;
height:100%;
}
Using this HTML:
<img src='folder/image.gif' id='selector'/>
Fiddle
, img . , , . , . .
, , CSS:
body {
background-image:url('folder/image.gif');
background-size:100%;
background-repeat: repeat-y;
background-attachment: fixed;
height:100%;
width:100%;
}
Fiddle
:
body {
background:url('folder/image.gif') repeat-y 100% 100% fixed;
height:100%;
width:100%;
}
Fiddle