Re: [css3-fonts] @font-face matching and font-style descriptor
John Hudson <[email protected]>
| Newsgroups | gmane.comp.web.fonts,gmane.comp.web.css.general |
|---|---|
| Organization | Tiro Typeworks |
| Message-ID | <[email protected]> |
John Daggett wrote:
>> @font-face {
>> font-family: MyFont;
>> src: local(Arial);
>> }
>>
>> @font-face {
>> font-family: MyFont;
>> src: local(Arial);
>> font-style:italic
>> }
>>
>> @font-face {
>> font-family: MyFont;
>> src: local(Arial);
>> font-weight:bold;
>> }
> Right, this with an additional bold italic version will completely
> eliminate the possibility of synthetic oblique/bolding.
To confirm I understand this:
Is this associating all the font-style and font-weight settings with a
single @font-face font? So no matter what style or weight is spec'd in
text, the same, 'regular' font is being used?
JH