View Single Post
Old 12-03-2008, 08:07   #14 (permalink)
woodss
Just another web monkey
 
woodss's Avatar
 
Join Date: Mar 2005
Location: Newcastle, UK
Posts: 215
Send a message via ICQ to woodss Send a message via MSN to woodss Send a message via Yahoo to woodss Send a message via Skype™ to woodss
It's invalid CSS because it is browser specific - it works in Firefox (MOZilla Firefox, get it? MOZ ... MOZ -moz) .. but IE/Opera/etc doesn't recognise -MOZZZZZ extensions to CSS

Also - ems...

Set your base font in the body tag, such as font-size: 1.0em which is the same as font-size: 100% ... you can use font-size: 1.2em which is 120% of the base font-size, etc.

p {
font-size: 955.2em;
color: #ff0000;
}

MOZ!
  Reply With Quote