I have been asked to vertically align the text in the labels for the fields in a form but I don\'t understand why they are not moving. I have tried putting in-line styles using
You can use flexbox in 2018+:
.label-class { display: flex; align-items: center; }
Browser support: https://caniuse.com/#search=flexbox