How can I horizontally and vertically center text above font awesome icon?
Example code:
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; }