I'm trying to get my icon font to work and I need to exclude icon-blue
[class^="icon-"], [class*=" icon-"] {
font-family: 'fontname';
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
How can I do this?
First
dont make sense because [class^="icon-"] is included in [class*=" icon-"]
To exclude you can use:
You have a full example to play here: http://codepen.io/luarmr/pen/dozjZW