vertical-align:middle for text in button

后端 未结 2 675
我在风中等你
我在风中等你 2021-02-09 07:09

I have this layout:

\"layout\"

My CSS:

body {
     background: #e2eaed;
}
         


        
2条回答
  •  后悔当初
    2021-02-09 07:28

    Another method would be using flexible boxes:

    a {
      display: inline-flex;
      align-items: center; /* cross axis */
      justify-content: center; /* main axis */
    
      line-height: 1; /* reset */
    }
    

    You may need to add prefixes, see browser support and fiddle.

提交回复
热议问题