Hi,

I've heard about them, but what is the best way to include relative font sizes in a web site? Is it right the default font should be 76% for the p tag?
I just need it so when the text resize is used on the browser, the site will change gracefully.

Does this mean I need to also look at my width/height values in my CSS for <div> elements?

I've seen the following:
HTML Code:
h1 { font-size: 160%; }
h2 { font-size: 140%; }
h3 { font-size: 120%; }
h4 { font-size: 100%; }
h5 { font-size: 85%; }
p, ul, ol, td { font-size: 85%; }

ul ul { font-size: 100%; }
td p { font-size: 100%; }

body { font-size: 80%; } 
used previously, but don't want to mess up my layout


Thanks for any advice.