Vertical Align text in a Label

前端 未结 14 1643
攒了一身酷
攒了一身酷 2021-02-06 20:27

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

14条回答
  •  孤城傲影
    2021-02-06 20:54

    This is what I usually do to "vertical align" text inside labels:

    label {
       display: block;
       float: left;
       padding-top: 2px; /*This needs to be modified to fit */
    }
    

    It won't scale very nicely, but it works.

提交回复
热议问题