Vertical align middle on an inline-block anchor tag

后端 未结 5 1550
无人共我
无人共我 2020-12-15 10:11

I have a need for my links and buttons to look the same, but I\'ve been unable to vertically align the text within an \"a\" tag in the same manner as the \"button\" tag. It

5条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-15 10:35

    The cleanest and most consistent way I found is this

    display: grid;
    place-items: center;
    

    https://jsfiddle.net/j8bktum9/

提交回复
热议问题