html vertical align the text inside input type button

前端 未结 10 2040
抹茶落季
抹茶落季 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条回答
  •  孤城傲影
    2021-02-01 01:35

    You can use flexbox (check browser support, depending on your needs).

    .testbutton {
      display: inline-flex;
      align-items: center; 
    }
    

提交回复
热议问题