问个表格的问题_html/css_WEB-ITnose
程序员文章站
2024-01-20 14:50:04
...
我在其中一个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'})}
实体营业厅
3
查看详情
想问下,如何能让鼠标在这一行上面时,这一行所有的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'})}
想问下,如何能让鼠标在这一行上面时,这一行所有的td背景色都变。谢谢解答。
回复讨论(解决方案)
我觉得其实已经变色了,被图片挡着,你看不出来了
没有 ,我试过直接把背景色 改成绿色,能看到绿色,背景图片并没有填满整个td,所以背景色变了能看到,我用的IE9
把background的属性分开设置就好了。
background-image:url("images/xp.png");
background-repeat:no-repeat;
background-position:center;
上一篇: 关于smarty模版的有关问题
下一篇: 请教大家都用什么PHP开发工具
推荐阅读
-
怎么是浮动的div水平居中啊?_html/css_WEB-ITnose
-
php+html点击a标签之后如何下载mp3格式的文件而不是直接打开?在线等!_html/css_WEB-ITnose
-
有支持Html5 WebSocket的手机浏览器吗?_html/css_WEB-ITnose
-
dreamweaver编辑html,结果电脑意外关机,正在编辑的代码全部没有了_html/css_WEB-ITnose
-
求一个登录界面的脚本(输入用户名和密码的)_html/css_WEB-ITnose
-
CSS引用鲜为人知的媒体查询_html/css_WEB-ITnose
-
请问个伪静态的有关问题
-
怎么在marquee标签里面设置一个关闭的图标_html/css_WEB-ITnose
-
求教,如何使用SwfUpload控件的addPostParam方法?_html/css_WEB-ITnose
-
bootstrap的意义是什么_html/css_WEB-ITnose