悬停表格行但仍保留某些单元格的背景颜色

时间:2016-09-20 16:35:17

标签: html css hover

我桌子上的一些细胞有背景颜色。表格的行颜色是交替的。我在表格行中创建了一个悬停。当鼠标在一行上时,它会悬停,并且一些彩色单元格的所有背景颜色都是不可见的。当鼠标指针悬停在行上时,如何悬停但仍保留单元格的背景颜色。我的悬停和替代颜色代码:

CSS:

Source.fromFile("some_file").getLines().toList.filterNot(_.isEmpty)
      .zipWithIndex
      .foldLeft(Map(0 -> List.empty[String], 1 -> List.empty[String], 2 -> List.empty[String])) { (result, current) =>
        result.updated(current._2 % 3, result(current._2 % 3) ++ List(current._1))
      }

JQuery的:

tr:hover td,
tr.even:hover td.active,
tr.odd:hover td.active {
background-color: #EBEBEB ;
}

1 个答案:

答案 0 :(得分:0)

你可以用普通的CSS进行。

PrintCoordinates