Trying to give focus to a styled select and other inputs nested within divs:
<label for="focusedSelect">I want to Focus on You</label>
<div class="styled-select">
<select id="focusedSelect">
<option value="1">Won</option>
<option value="2">Too</option>
</select>
</div>
<label for="focusedInput>Let me Focus on You Too</label>
<div class="styled-inputs">
<input id="focusedInput" type="text"/>
</div>
Clicking the label doesn't give focus to input or select of nested div.
<label>s do what they should do — clicking them puts focus on the associated field. Your question is still not clear, however.