With CSS, is it possible to change the background-color of an entire <tr> based on whether or not an <input type="checkbox"> is checked?
Example
<table>
 <!-- This is the row I want to change the background of... -->
 <tr>
  <td>
   <!-- ...when this is checked -->
   <input type="checkbox" name="cb1" id="cb1" />
  </td>
  <td>Something 1</td>
 </tr>
</table>
 
    