0

Is there a way i can only change styling for the labels that are followed by the input tag only and not by select tag or any other tag

<label>Name</label>
<input type="text" placeholder="Name>
<label>City</label>
<select>
<option>Chandigarh</option>
<option>Mohali</option>
<option>Delhi</option>
</select>

Here , I Want both the labels should have different styling , I have tried selectors but unable to fix it.

ruchika vasu
  • 101
  • 1
  • 1
  • 9

1 Answers1

0

Unfortunatelly, you can't select parent element.

You would have to either add container with custom class or do some sort of javascript solution

WellBloud
  • 927
  • 4
  • 13
  • 29