Is there a good way to select an input that has unique classes.
At the moment this will do...
input[type="checkbox"]:checked + label {....}
But what if I want to grab the label by the class name usethis? Code below -
<div class="checkbox">
<input id="c1" class="rounded-input" type="checkbox" rel="performance" onchange="change()" />
<label class="usethis" for="c1">Performance</label>
</div>
label