I have code like so
<li class="iconic camera">Pentax K-5 16 Megapixel DSLR</li>
I use CSS like
.iconic.camera:before {
font-size: 35px;
font-family: "KameraDings";
content: "A";
padding-right: 8px;
vertical-align: -10%;
}
to insert a Camera symbol with the special symbol font. However I have style for li’s set to italic. Is there a way possible to remove italic from this one content letter ? I have tried font-style: none; to no avail
That’s
font-style: normal;notfont-style: none;.