Is there any way to embed HTML in the css content: element when using a :before pseudo-element?
content:
:before
I want to use a Font Awesome (or Glyphicon)
In the case of your list items there is a little CSS you can use to achieve the desired effect.
ul.icons li { position: relative; padding-left: -20px; // for example } ul.icons li i { position: absolute; left: 0; }
I have tested this in Safari on OS X.