Vertically align text within input field of fixed-height without display: table or padding?

后端 未结 16 2366
Happy的楠姐
Happy的楠姐 2020-12-01 01:27

The line-height property usually takes care of vertical alignment, but not with inputs. Is there a way to automatically center text without playing around with padding?

16条回答
  •  Happy的楠姐
    2020-12-01 01:33

    I ran into this problem myself. I found that not specifying an input height, but using the font-height and padding combined, results in vertically aligned text.

    For instance, lets say you want to have a 42px tall input box, with a font-size of 20px. You could simply find the difference between the input height and the font-size, divide it by two, and set your padding to that amount. In this case, you would have 22px total worth of padding, which is 11px on each side.

    
    

    That would give you a 42px tall input box with perfect vertical alignment.

    Hope that helps.

提交回复
热议问题