当鼠标悬停在html表格 列上 时,如何更改背景列?
最好仅使用CSS。
抱歉,仅适用于单元格或行。例如
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 */