Hallo,
ich möchte meine Tabellenzeilen von bestimmten Tabellen hovern, aber darin auch Ausnahmen festlegen können.
Hovern klappt.
table.example tbody:hover {
background-color: #FFF;
}
table.example tr:hover {
background-color: #FFF;
}
Aber die Ausnahmnen nicht.
table.example tbody:not(.no_hover):hover {
background-color: #FFF;
}
table.example tr:not(.no_hover):hover {
background-color: #FFF;
}
Was mache ich falsch, bzw. wie macht mans korrekt?
Hank