I\'m coding a site that contains 3 wide images which need to have 100% width at all times. I\'m using media queries and I would rather not have to make 3+ copies of each ima
You need to add background-size
after the prefixed versions:
#artwork1 {
width: 1500px;
height:500px;
background-image: url(../img/menupic_1.png);
background-repeat:no-repeat;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
-moz-background-size was only supported in Firefox 3.6, and the other prefixed versions aren't guaranteed to stick around.