Image ShrinkyDink

Expandable image and shrinkable with no min-width

by Reusablecode

HTML

div {
  background: url(http://img810.imageshack.us/img810/386/02265wintersun800x480.jpg) 10px center no-repeat, 
              url(http://img810.imageshack.us/img810/386/02265wintersun800x480.jpg) 10px center repeat-x;
}

CSS

html, body {
    height: 100%;
    widthg:100%;
    position: relative;
    background: url(http://img810.imageshack.us/img810/386/02265wintersun800x480.jpg);
    background-repeat: no-repeat;
    -o-background-size: contain;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
}