无法在html中的表格中插入背景图片

时间:2012-03-28 12:10:02

标签: html

此代码有效:

<html>
<head>
</head>
<body  background ="images.png">
  <table>
    <tr>
      <td>100</td>
    </tr>
  </table>
</body>
</html>

我可以看到重复的图像。但是没有。我看不到图像。

<html>
<head >
</head>
<body>
  <table background ="images.png">
    <tr>
      <td>100</td>
    </tr>
  </table>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

因为background不是table代码的有效属性。尝试使用CSS。