Advertisement
arnabkumar

Use Font awesome as background using before and after

May 12th, 2014
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.42 KB | None | 0 0
  1. like - <i class="fa fa-skype"></i> fa-skype
  2.  
  3.  
  4. icon:before{color:#5F1F1F;
  5. content: "\f17e";
  6. font-family: FontAwesome;
  7. font-size: 53px;}
  8.  
  9. OR
  10.  
  11. icon:after{color:#5F1F1F;
  12. content: "\f17e";
  13. font-family: FontAwesome;
  14. font-size: 53px;}
  15.  
  16. You can find FontAwesome content form http://fortawesome.github.io/Font-Awesome/icons/
  17.  
  18.  
  19. NOTE : How to fine content?
  20. http://fortawesome.github.io/Font-Awesome/cheatsheet/
  21.  
  22.  
  23. Done.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement