.hoverTable{
width:100%;
border-collapse:collapse;
}
.hoverTable td{
padding:7px; border:#4e95f4 1px solid;
}
/* Define the default color for all the table rows */
.hoverTable tr{
background: #b8d1f3;
}
/* Define the hover highlight color for the table row */
.hoverTable tr:hover {
background-color: #ffff99;
}
6条答案
按热度按时间rkue9o1l1#
是的,行是可能的,但列是不可能。
km0tfn4u2#
是的,这是可能的,但你必须担心浏览器的兼容性这里是一个例子
8aqjt8rx3#
适用于大多数浏览器
rur96b6h4#
如果你不关心Internet Explorer,:hover CSS伪类可以处理任何元素。
如果你真的关心IE,你可以找到一个解决方案here。
fquxozlt5#
wf82jlnq6#
在这种情况下,您可以使用样式表规则将其添加到表行,如下面的CSS代码示例所示:
完整示例:
Source