How to vertically align text with icon font?

前端 未结 10 1367
醉话见心
醉话见心 2020-11-29 01:08

I have a very basic HTML which mix plain text and icon fonts. The problem is that icons are not exactly rendered at the same height than the text:

10条回答
  •  野性不改
    2020-11-29 01:38

    vertical-align can take a unit value so you can resort to that when needed:

    {
      display:inline-block;
      vertical-align: 5px;
    }
    
    {
      display:inline-block;
      vertical-align: -5px;
    }
    

提交回复
热议问题