Center text above font awesome icon?

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

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

Example code:

4条回答
  •  长发绾君心
    2021-01-19 17:59

    p {
      
           vertical-align: bottom;
           display: inline-block;  
           position: absolute;
            }
       
    i {
          
          vertical-align: top;
          margin-top: 6%;
          margin-left: 0.7%;
          position: relative;
            }
        
           
        
          
        
    
        
            
    `

    Truc

提交回复
热议问题