vertical-align:middle for text in button

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

I have this layout:

\"layout\"

My CSS:

body {
     background: #e2eaed;
}
         


        
2条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-09 07:35

    Vertical align only affects elements that displayed as table cells (or inline blocks, but effect on later is different). Those elements must not be floated.

    a {
      display: table-cell;
      vertical-align: middle;
    
      /* Reset */
      float: none;
      line-height: normal;
    }
    

提交回复
热议问题