首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

问个表格的有关问题

2013-09-13 
问个表格的问题我在其中一个td中插入了一个图片,我原来是鼠标在这一行上面时,都变绿,现在鼠标在这一行上面

问个表格的问题
我在其中一个td中插入了一个图片,我原来是鼠标在这一行上面时,都变绿,现在鼠标在这一行上面时,添加背景图片这个td背景色不变。
.spectd{
background:url("images/xp.png") no-repeat center;
}
.spectr{event:expression(onmouseover=function(){this.style.background='green';},onmouseout=function(){this.style.backgroundColor='white'})}

<tr class="spectr">
 <td style="width:120px;height:40px;">实体营业厅</td>
 <td style="width:50px;height:40px;">3</td>
 <td class="spectd" onclick="alert(1)">查看详情</td>
 </tr>
想问下,如何能让鼠标在这一行上面时,这一行所有的td背景色都变。谢谢解答。
[解决办法]
我觉得其实已经变色了,被图片挡着,你看不出来了
[解决办法]
把background的属性分开设置就好了。
background-image:url("images/xp.png");
background-repeat:no-repeat;
background-position:center;

热点排行