テーブルセルに背景画像を設定して、png画像を「含む」ようにしています。画像の幅は約 1400 ピクセルです。画像のほんの一部を表示しています。比率に合わせてサイズを変更すると思いました。IE9を使用。お知らせ下さい。
<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>