I have a quick question about styling checkboxes. I have made one big table with checkboxes in it and would like to have each checkbox in that table to have its own color when checked, even better each row to have its own checked color. I have found a way to check them all at once with this
input[type="checkbox"]:checked{
background-color: #fff;
}
But I don't know how to use that so I color each row different or each one. Thanks in advance for your help!