html vertical align the text inside input type button

前端 未结 10 2209
抹茶落季
抹茶落季 2021-02-01 00:40

I\'m trying to create a button with height of \'22px\' , and that the text inside the button will be vertically aligned in the center of the button. I tried everything , and can

10条回答
  •  旧时难觅i
    2021-02-01 01:39

    I found that using a fixed width with padding seems to work (in ff at least)

    .Btn
     {
       width:75px;
       padding:10px;
     }
    

    Try it at:-

    http://jsfiddle.net/stevenally/z32kg/

提交回复
热议问题