Center text above font awesome icon?

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

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

Example code:

4条回答
  •  臣服心动
    2021-01-19 18:02

    Is this what you're trying to achieve?

    HTML:

    text

    CSS:

    div{
         width: 200px;
         height: 80px;
         background-color: #ffffd;
         text-align: center;
         display: table;
    }
    div .content {
        display: table-cell;
        vertical-align: middle;
    }
    div .content span {
        display: block;
    }
    

    http://jsfiddle.net/63ovh9xk/

提交回复
热议问题