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

后端 未结 16 2368
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条回答
  •  隐瞒了意图╮
    2020-12-01 01:44

    input[type=text]
    {
       height: 15px; 
       line-height: 15px;
    }
    

    this is correct way to set vertical-middle position.

提交回复
热议问题