I'm looking at the MDC page for the @font-face CSS rule, but I don't get one thing. I have separate files for bold, italic and bold + italic, how can I embed all three files in one @font-face rule? For example, if I have:

@font-face {
    font-family: "DejaVu Sans";
    src: url("./fonts/DejaVuSans.ttf") format("ttf");
}
strong {
    font-family: "DejaVu Sans";
    font-weight: bold;
}

The browser will not know what font to use for bold (because that files is DejaVuSansBold.ttf), so it will default to something I probably don't want. How can I tell the browser all the different variants I have for a certain font?

link|improve this question

feedback

2 Answers

up vote 68 down vote accepted

Here I go answering my own question. The solution seems to be to add multiple @font-face rules, for example:

@font-face {
    font-family: "DejaVu Sans";
    src: url("fonts/DejaVuSans.ttf");
}
@font-face {
    font-family: "DejaVu Sans";
    src: url("fonts/DejaVuSans-Bold.ttf");
    font-weight: bold;
}
@font-face {
    font-family: "DejaVu Sans";
    src: url("fonts/DejaVuSans-Oblique.ttf");
    font-style: italic, oblique;
}
@font-face {
    font-family: "DejaVu Sans";
    src: url("fonts/DejaVuSans-BoldOblique.ttf");
    font-weight: bold;
    font-style: italic, oblique;
}

By the way, it would seem the Google Chrome doesn't know about the format("ttf") argument, so you might want to skip that.

link|improve this answer
1  
I would've never thought of that... – ZoogieZork Mar 13 '10 at 1:01
2  
format("ttf") ? – N 1.1 Mar 13 '10 at 1:09
@nvl according to css3 spec, we should use format() to specify the format of the font. However, now I see that maybe I should've used format("truetype"), maybe Chrome would be able to handle that. – Felix Mar 13 '10 at 22:23
5  
The order is important, the bold/italic style must come last. – The Who Jun 11 '10 at 12:40
1  
Worth noting that this doesn't work in IE8 (and below), even if you use an EOT. IE will download the alternate typeface, but it won't use it, instead it will fake-bold/italic the regular typeface. Also, Chrome 11 seems to fail render a typeface that's both bold and italic – Jaffa The Cake May 5 '11 at 18:46
show 1 more comment
feedback

I have found problems using font-style: italic, oblique; with Firefox 3.6/Win it turns out it's actually invalid css and only one style can be specified at a time. So you'll need 2 extra @font-face one for italic and one for oblique.

link|improve this answer
feedback

protected by Community Jul 10 '11 at 2:18

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.