[css-d] Table cells don't always inherit font size

2008-02-18 Thread James Eaton
What's a simple way to be sure that all tables will inherit the font size from the body font declaration? The browser that I'm having a hard time with right now is Mozilla's Thunderbird. All the others that I care about seem to inherit the font size correctly. body { font-family: verdana,

Re: [css-d] Table cells don't always inherit font size

2008-02-18 Thread Geoffrey Hoffman
I've used something like this before: body, p, th, td, input, textarea { font-size:11px; } __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/

Re: [css-d] Table cells don't always inherit font size

2008-02-18 Thread James Eaton
I just tried this, which seems to do the trick in the Thunderbird browser. Is this fairly universal? body { font-family: verdana, arial, helvetica, sans-serif; font-size: 11px; line-height: 1.4; color: #00; } table { font-size: inherit; } From: James Eaton What's a simple