Darren Lovelock wrote:
Try using em's. 1em is the equivalent of 16px. You can also use ems to 1 decimal place if you want to be more precise. e.g. h1 { font-size: 1em; } p { font-size: .8em; } Kind regards, Darren Lovelock
But be very careful if you use em's. You must declare percent on the body or html, otherwise you'll trigger a bug in IE that causes the fonts to go goofy when scaled.
This is a method that /will/ work fine in IE when using em's: html {font-size: 100%;} body {font-size: 1em;} h1 {font-size: 1em;} p {font-size: 0.8em;} Best, ~dL ******************************************************************* List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm Help: [EMAIL PROTECTED] *******************************************************************