I want to highlight a line on mouseover (hover). I use bootstrap, and on the table I use my table-striped class, so when I write css:
tbody { tr:hover { background-color: #ff0; } }
It changes color only to white lines, but not to others. Not sure if the best way to solve this problem. Maybe I can somehow rewrite the strip label? How can I do it?
source share