html:悬停表格栏
当鼠标悬停在html表格" title="html表格">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 */
以上是 html:悬停表格栏 的全部内容, 来源链接: utcz.com/qa/408261.html