Center text character ☢ vertically and horizontally within a circle (CSS)

后端 未结 4 450
无人及你
无人及你 2021-01-23 03:30

I am trying to center this text character ☢ within a circle. (☢)

While IE 10 displays the text vertically and horizontally centered, both Chrome and Firefox r

4条回答
  •  伪装坚强ぢ
    2021-01-23 04:18

    The problem is that the inner child is a text which screws with your height.

    I added a line-height which seems to fix it a bit:

    .tl-icon div{
      line-height:1px;
    }
    

    http://codepen.io/anon/pen/ZYePBZ

提交回复
热议问题