Similar to this question, I just can't get the syntax correct. wildcard * in CSS for classes
I basically need to make this into a "wildcard" statement:
.et_pb_tab_0 td:hover{
background: #000 !important;
}
.et_pb_tab_2 td:hover{
background: #000 !important;
}
.et_pb_tab_3 td:hover{
background: #000 !important;
}
etc....
here's what I tried:
div[class*="et_pb_tab_"], div[class^=" td:hover"]{
background: #000 !important;
}
But it acts as if it's ignoring the "td:hover" section and changing the background of the et_pb_tab_* instead of the td inside when hovered.