Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

3 Answers

up vote 144 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.

share|improve this answer
3  
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
25  
The order is important, the bold/italic style must come last. – The Who Jun 11 '10 at 12:40
3  
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
1  
This example works perfect for fonts that do have a separate TTF file for bold and italic. But what if the whole font is in one .ttf file and you want to use bold, how does that work? – user836645 Jul 9 '11 at 11:42
show 4 more comments

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.

share|improve this answer

This article answers your question: http://www.metaltoad.com/blog/how-use-font-face-avoid-faux-italic-and-bold-browser-styles

share|improve this answer
1  
This is THE solution. Kudos! – Luis Martin Jan 4 at 12:57

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.