I have 2 types of labels, normal labels like the first line, and labels that contain a input field within them. What CSS rule can let me select all <label> but exclude all labels that happen to contain <input> within?
<label for="type">Some Label</label>
<label for="type">
   <input type="checkbox" value="1" id="type">Some Label
</label>
 
     
     
    