How to highlight the table row on mouse hover

后端 未结 3 573
说谎
说谎 2021-01-06 14:50

I have this table:

3条回答
  •  一整个雨季
    2021-01-06 15:08

    I'm not familiar with Angular, so this may be the incorrect way to do this, but this seems to work on your fiddle ...

    change the row to

and add the css class

.highlight {
    background-color: gray;
}

The idea comes from this SO question

提交回复
热议问题