I am trying to insert a FontAwesome icon inside a ::before
pseudo element with attr()
. The original code is more complex, however this will give you an idea of what I want:
<div data-background-icon="\f086"></div>
div::before {
content: attr(data-background-icon);
font-family: "FontAwesome";
}
https://jsfiddle.net/grutcop8/
It doesn't work, while the usual way to embed it works OK:
div::before {
content: "\f086";
font-family: "FontAwesome";
}
Anything I am missing?
Try with Unicode
CSS escape sequences only work within CSS strings. When you take a CSS escape sequence from an HTML attribute (i.e. outside of CSS), it will be read literally, not interpreted as part of a CSS string.
If you want to encode the character within an HTML attribute, you need to encode it as an HTML entity.
you should add "&#x"
before your font-Awesome icon code. ie, if you want to use /f086
, then write 
instead
get the unicode from here - https://fortawesome.github.io/Font-Awesome/cheatsheet/
UPDATE
If you are using fontAwesome 5, change font-family: "FontAwesome";
to font-family: 'Font Awesome 5 Free';
div:before {
content: attr(data-background-icon);
font-family: "FontAwesome";
}
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet"/>
<div data-background-icon=''></div>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With