-
-
Save naveenlb/be561f1b71fe6a73cb6f4a445c66a134 to your computer and use it in GitHub Desktop.
#fonts #css use font-awesome in CSS (background image)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.mytextwithicon { | |
position: relative; | |
} | |
.mytextwithicon:before { | |
font-family: FontAwesome; | |
content: "\f069"; | |
position:absolute; | |
left: -5px; | |
top:0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks. It worked.