I need assistance with CSS rules to target only <label>
elements that do not contain an <input>
field inside of them. Is there a specific rule I can use for this?
<label for="type">Regular Label</label>
<label for="type">
<input type="checkbox" value="1" id="type">Label with Input Field
</label>