How to highlight the table row on mouse hover

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

I have this table:

3条回答

CSS:

.table-hover > tbody > tr:hover {
    background-color: #f5f5f5;
}

And if else you want is to make the tr selectable:

HTML:

CSS:

tr[ng-click] {
    cursor: pointer;
}

View JSFiddle Sample

提交回复
热议问题