css背景图像没有出现

时间:2011-11-06 01:30:28

标签: html css

我无法弄清楚为什么这个背景图片没有显示出来。似乎图像被发送到浏览器,并且css规则正在应用。

当我检查元素时,我得到这些匹配的规则。当我点击'images / o.png'链接时,它会显示预期的图像     .player1_move {       宽度:30px;       身高:30px;       background-image:url('images / o.png');     }

-----------下面是我拥有的css和html ---------

  .player1_move {
    width: 30px;
    height: 30px;
    background-image: url('images/o.png');
  }

 <table>
  <tr>
    <td id = "0-0" class="player1_move"></td>
  </tr>
 </table>

1 个答案:

答案 0 :(得分:1)

我的猜测是你的细胞是空的,这就是它没有显示的原因。

在你的css上添加:

table{
    empty-cells: show;
}