Re: [css3-fonts] @font-face matching and font-style descriptor

On Sep 14, 2010, at 4:00 AM, Thomas Phinney wrote:

> I should clarify that I am not seeking a change in the default behavior, but if the existing behaviors are to persist, it would be a Very Good Thing if there were some mechanism to suppress or turn off all faux italics and faux bold. 

How about this:

@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;
}

Received on Tuesday, 14 September 2010 14:58:28 UTC