i have a form where i placed my labels before inputs like this
<label for="email">Confirm Email</label>
<input type="text" id="email" />
<label for="firstname">First Name</label>
<input type="text" id="firstname" />
<label for="lastname">Last Name</label>
<input type="text" id="lastname" />
<label for="company">Company</label>
<input type="text" id="company" />
when i try to use the CSS to style the label when i hover the input like this (input:hover + label), the CSS applies on the next label instead on the one that has the for= property. For example if i try to hover email input, it will apply the input:hover+label effect on the 2nd label with for="firstname".
I hope there is a solution to this, cause my design structure has labels on top and inputs under so i cant switch their position.
Thank you, Daniel!