How to vertically align text with icon font?

前端 未结 10 1317
醉话见心
醉话见心 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:25

    Set line-height to the vertical size of the picture, then do vertical-align:middle like Josh said.

    so if the picture is 20px, you would have

    {
    line-height:20px;
    font-size:14px;
    vertical-align:middle;
    }
    

提交回复
热议问题