当鼠标指针在表格行上时更改表格颜色

时间:2016-04-14 22:19:15

标签: html css css3

我使用此代码设置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 个答案:

答案 0 :(得分:1)

你的意思是:hover

.table tr:hover {
   background-color: red;
}

答案 1 :(得分:0)

当鼠标在表格行上时,它也在表格本身上

table:hover{
  /* change table style */

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

}

会做的伎俩