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
You can use flexbox (check browser support, depending on your needs).
.testbutton { display: inline-flex; align-items: center; }