I'm not sure what to search for regarding this issue, so forgive me if there's answers to this question already out there.
Can somebody please explain to me why the style is not being applied to #input-label
when #input
is focused?
#input:focus #input-label {
border: solid red 1px;
background: orange;
}
<label id='input-label' for='input'>Label:</label>
<input id='input' type='text' value='Input' />