material-design-iconic-font
material-design-iconic-font copied to clipboard
Use the font as content in CSS
Hi guys,
Awesome awesome library btw - completely replaced FA in all my projects!
I would like to use this in a content
in css.
I have downloaded the fonts and have them on the same level as the css folder and the following code does not work, what am I doing wrong?
.thing::before{
font-family: Material-Design-Icon-Font;
content: "\f1f1"
}
The above renders a square. Sorry for the remedial question
Try this:
font-family: "Material Icons";
Hey, that doesn't appear to work either
You have to use quotes.
"font-family: Material-Design-Icon-Font;"
or 'font-family: Material-Design-Icon-Font;'
Is there an answer to this?