开发者问题收集

当鼠标指针位于表格行上方时更改表格颜色

2016-04-14
1369

我使用此代码设置 html5 表格的样式。当我将鼠标指针移到表格行上时,如何更改行颜色。我想在将鼠标指针移到表格行上时更改表格颜色。

.table th,
.table td {
    padding-left: 5px;
    padding-right: 10px;
    padding-top: 7px;
    padding-bottom: 7px;
}

.new_table th,
.new_table td {
    padding-right: 40px;
    padding-top: 7px;
    padding-bottom: 7px;
}

.table th {
    background-color: #eceef1;
    padding-top: 5px;
    padding-bottom: 5px;
}
2个回答

您是指 :hover

.table tr:hover {
   background-color: red;
}
Yichz
2016-04-14

当鼠标悬停在表格行上时,它也位于表格本身上

table:hover{
  /* change table style */

}
table tr:hover{
  /* change table row style */

}

即可达到目的

Herbi Shtini
2016-04-14