Center text above font awesome icon?

前端 未结 4 1215
别那么骄傲
别那么骄傲 2021-01-19 17:33

How can I horizontally and vertically center text above font awesome icon?

Example code:

4条回答
  •  离开以前
    2021-01-19 18:20

    Just set display:table-cell, vertical-align: middle and text-align: center to the div

    CSS

    div{
    display: table-cell;
    text-align:center;
    vertical-align: middle;
    }
    

提交回复
热议问题