I am trying to set background-image on a table cell to 'contain' a png image. The image is about 1400 pixels wide. It's just showing a small portion of image. I thought it would re-size to proportion. Using IE9. Please advise.
<head>
<style>
.yes
{
background-image: url(fullfamily.png);
background-attachment: fixed;
background-repeat: no-repeat;
background-size: contain;
-moz-background-size: contain;
/* these two don't work */
-webkit-background-size: contain;
-o-background-size: contain;
}
</style>
</head>
<body><table width="500" height="500" ><tr><td class="yes"></td></tr></table>
</body>