Re: [WSG] Font-size em and reseting within [using keywords]

2005-08-26 Thread wendy
After reading a well-known css author's statement in his brand-new book that keywords worked best for him, I just went the keyword way (including the Tan hack for Windows/IE) using small as the base font, with all the rest specified in %. (http://www.birchhillaccommodations.com/) Got comments

Re: [WSG] Font-size em and reseting within

2005-08-26 Thread Chris Kennon
Hi, So would is this the solution to the original problem: div style=font-size: 0.90em; Some text div style=font-size: 0.80em; More text /div Some text /div or an aside? C On Aug 25, 2005, at 5:43 PM, Patrick H. Lauke wrote: Geoff Deering wrote: I'm just

Re: [WSG] Font-size em and reseting within

2005-08-26 Thread Chris Kennon
Hi, An experiment revealed this recursive down slide. C On Aug 25, 2005, at 5:38 PM, Patrick H. Lauke wrote: Chris Kennon wrote: div#something *{ font-size: 0.9em; } That's the quickest way of producing an ever decreasing cascade of font sizes for every level of nesting you have

Re: [WSG] Font-size em and reseting within [using keywords]

2005-08-26 Thread Felix Miata
wendy wrote: After reading a well-known css author's statement in his brand-new book that keywords worked best for him, I just went the keyword way (including the Tan hack for Windows/IE) using small as the base font, with all the rest specified in %. (http://www.birchhillaccommodations.com/)

Re: [WSG] Font-size em and reseting within [using keywords]

2005-08-26 Thread Tom Livingston
On Fri, 26 Aug 2005 09:22:33 -0400, Felix Miata [EMAIL PROTECTED] wrote: properly preferenced medium according to who/what? -- Tom Livingston Senior Multimedia Artist Media Logic www.mlinc.com Using Opera's revolutionary e-mail client: http://www.opera.com/mail/

Re: [WSG] Font-size em and reseting within [using keywords]

2005-08-26 Thread Felix Miata
Tom Livingston wrote: On Fri, 26 Aug 2005 09:22:33 -0400, Felix Miata [EMAIL PROTECTED] wrote: properly preferenced medium according to who/what? According to what you failed to quote from what I wrote: http://dictionary.reference.com/search?q=medium shows the

Re: [WSG] Font-size em and reseting within [using keywords]

2005-08-26 Thread Tom Livingston
On Fri, 26 Aug 2005 10:40:55 -0400, Felix Miata [EMAIL PROTECTED] wrote: My browser preference is set to midway between extremes, which is exactly the right size (not too big and not too small) when pages use medium/100%/1em (or do not size at all) normal paragraph text. So, using keywords,

Re: [WSG] Font-size em and reseting within [using keywords]

2005-08-26 Thread Felix Miata
Tom Livingston wrote: On Fri, 26 Aug 2005 10:40:55 -0400, Felix Miata [EMAIL PROTECTED] wrote: My browser preference is set to midway between extremes, which is exactly the right size (not too big and not too small) when pages use medium/100%/1em (or do not size at all) normal paragraph

RE: [WSG] Font-size em and reseting within [using keywords]

2005-08-26 Thread Patrick Lauke
Tom Livingston So, using keywords, what happens when a user sets his/her browser pref. to 'small', and an author specifies 'medium'? Is the users text size changed? A user doesn't choose between small/medium/large as their preference. They'd set what size they want their 'medium' to be

RE: [WSG] Font-size em and reseting within [using keywords]

2005-08-26 Thread Buddy Quaid
because they will not go beyond the 9px mark when using keywords. Buddy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Patrick Lauke Sent: Friday, August 26, 2005 11:05 AM To: wsg@webstandardsgroup.org Subject: RE: [WSG] Font-size em and reseting

Re: [WSG] Font-size em and reseting within

2005-08-26 Thread Lea de Groot
On Fri, 26 Aug 2005 05:53:20 -0700, Chris Kennon wrote: div style=font-size: 0.90em; Some text div style=font-size: 0.80em; More text /div Some text /div Generally I tend to think its 'bad typography' to have different sizes all over the page. In the rare case

Re: [WSG] Font-size em and reseting within

2005-08-26 Thread Chris Kennon
On Aug 26, 2005, at 5:12 PM, Lea de Groot wrote: I didn't write the rule under scorn, the original thread follows this reply. I'm not a fan of inline styling or piling up values. I've worked with stylesheets since Designing Killer Websites by Dave Siegel; having quickly embraced the

[WSG] Font-size em and reseting within

2005-08-25 Thread Janelle Clemens
If you are using em with font-size is there is a way to clear the font-size of a box element (stop the inheritance)?I am having a hard time explaining myself so maybe an example would be better. So if you have this code, the More text would be 0.80em relation to the 0.90em. div

Re: [WSG] Font-size em and reseting within

2005-08-25 Thread Chris Kennon
Hi, Maybe something like: div#something *{ font-size: 0.9em; } On Aug 25, 2005, at 2:51 PM, Janelle Clemens wrote: If you are using em with font-size is there is a way to clear the font-size of a box element (stop the inheritance)?I am having a hard time explaining myself so maybe

RE: [WSG] Font-size em and reseting within

2005-08-25 Thread Buddy Quaid
Of Janelle Clemens Sent: Thursday, August 25, 2005 4:51 PM To: 'wsg@webstandardsgroup.org' Subject: [WSG] Font-size em and reseting within If you are using em with font-size is there is a way to clear the font-size of a box element (stop the inheritance)?I am having a hard time

Re: [WSG] Font-size em and reseting within

2005-08-25 Thread Geoff Deering
Lea de Groot wrote: On Thu, 25 Aug 2005 14:51:00 -0700, Janelle Clemens wrote: If you are using em with font-size is there is a way to clear the font-size of a box element (stop the inheritance)? No, not really. I normally get around this by only setting font-size in two places, as

Re: [WSG] Font-size em and reseting within

2005-08-25 Thread Patrick H. Lauke
Chris Kennon wrote: div#something *{ font-size: 0.9em; } That's the quickest way of producing an ever decreasing cascade of font sizes for every level of nesting you have within div#something...so not really. -- Patrick H. Lauke __

Re: [WSG] Font-size em and reseting within

2005-08-25 Thread Patrick H. Lauke
Geoff Deering wrote: I'm just wondering how people handle the IE text resizing problem, where IE handles percentages much more accurately than em? You can safely use ems as long as your highest font size is something else, like %. For instance, as long as you have something like html {

Re: [WSG] Font-size em and reseting within

2005-08-25 Thread Geoff Deering
Patrick H. Lauke wrote: Geoff Deering wrote: I'm just wondering how people handle the IE text resizing problem, where IE handles percentages much more accurately than em? You can safely use ems as long as your highest font size is something else, like %. For instance, as long as you have