Multiple @font-face support. (Passing normal font-weight: normal + font-weight: bold)
If I have both @font-face's, only the first seems to be used. CSS:
@font-face {
font-family: [font];
font-weight: normal;
src: url('/app/font/[font].otf');
}
@font-face {
font-family: [font];
font-weight: bold;
src: url('/app/font/[font]-bold.otf');
}
3
votes

-
pdfmyurl commented
Could you post a url of this being demonstrated? This will make trouble shooting easier.