td背景图片100%不工作即8(数字)

时间:2014-10-30 03:03:30

标签: html css internet-explorer-8 html-table

我有一个td,我希望背景图像100%不重复。

以下代码适用于ie8 + - 等所有内容。当我在xp pro服务器上运行时,我不知道ie10。

 .td1 {
    background-repeat: no-repeat;
    background-size: cover;

  }

  <td class="td1" style="max-height: 100%; max-width: 100%" background="../art1/#bg1mg#.jpg" align="center">

当图像随着td标签中的变量“bg1mg”而变化时,我无法在样式部分输入图像网址。

提前tnx。

1 个答案:

答案 0 :(得分:0)

IE8不支持background-size

http://caniuse.com/#feat=background-img-opts

提示:您也不应该将HTML与CSS混合使用。将您的内容与样式分开。它易于维护,可以避免很多麻烦。