小编典典

html:悬停表格栏

css

当鼠标悬停在html表格 列上 时,如何更改背景列?

最好仅使用CSS。


阅读 479

收藏
2020-05-16

共1个答案

小编典典

抱歉,仅适用于单元格或行。例如

td {
  background-color: blue;
}

td:hover {
  background-color: red;
}

有可用的JavaScript解决方案,但由于选择器的局限性,CSS中目前没有任何功能可以满足您的要求。

td  /* all cells */
{ 
  background-color: blue;
}

tr /* all rows */
{
  background-color: pink;
}

/* nothing for all columns */
2020-05-16