我正在尝试在表格单元格上设置背景图像以“包含”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>