Himas Rafeek
Posted on: 3 years ago
CSS

vertical alignment in forms with multiline labels (horizontal placement label – input)

this snippet is for this html structure

%form

%ol

%li

%label Label:

%input


                                          li {
    display: inline-block;
    line-height: 0;
}
 label {
    display: inline-block;
    line-height: 1.5em;
    vertical-align: middle;
}
 input {
    display: inline-block;
    vertical-align: middle;
}