选项卡时更改整行的背景颜色?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了选项卡时更改整行的背景颜色?相关的知识,希望对你有一定的参考价值。
我有一个简单的表,有两列五行。我希望它更易于键盘访问。
左列只是文本,右列是聚焦/悬停时填充的按钮。
有没有办法在选项卡(聚焦)时更改整行的背景颜色并同时填充按钮背景颜色?
答案
编辑:为focus
添加
假设你有一个这样的表:
<table style="width:100%">
<tr class="hoverable-row">
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
<tr class="hoverable-row">>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr class="hoverable-row">>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
</table>
然后在css
.hoverable-row:hover, :focus {
background-color: yellow;
}
另外,请阅读https://stackoverflow.com/help/how-to-ask如何以良好的方式提问。
以上是关于选项卡时更改整行的背景颜色?的主要内容,如果未能解决你的问题,请参考以下文章
如何更改DataGridView行的背景颜色并在悬停时撤消?