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

后端 未结 4 493
无人及你
无人及你 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:34

    Target that child div, set it to inline-block and change the vertical alignment:

    .tl-icon div{
      display: inline-block;
      vertical-align: top;
    }
    

    CODEPEN

提交回复
热议问题