Is there a way to change the color of a row in a table when a checkbox in a row is checked using only CSS selectors?
I have the following, but it changes the color of the checkbox, not the table cell:
.table_class tr td.column0 input[type="checkbox"]:checked { background-color:#f00; }
source
share