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