Em are the best solution for font-sizes, from everything that I know. Pixels I don't know if pixels should be used at all and percentages from what I know are relative to the browser size, is this correct or am I mis-understanding something.

I'm not studying typography, maybe there are some on this list that are typography experts that could give me a long explanation, that is not what I'm after. What I want to know is the differences and when to use each one, and is there one, whether it's px or percentages that should be used the least ?

Thanks everyone and I want to say thanks to the list who have helped me even though they are extremely busy :)

<!DOCTYPE html>
<html lang="en">
<head>
<style>
      p.one {font-size:3em;}
      p.two {font-size:34px;}
      p.three {font-size:34%;}
</style>
</head>
<body>
<p class="one">The Witch should go under a rock</p>
<p class="two">The Witch should go under a rock</p>
<p class="three">The Wtich should go under a rock</p>

</body>
</html>
______________________________________________________________________
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to