At 5:17 PM -0400 9/8/10, Chris F.A. Johnson wrote:
On Wed, 8 Sep 2010, Lalena wrote:

a {font-family:Times,serif;
 font-size:medium;
 color:#ffffff;
}

   You can set default font for the entire page in the BODY:

body
{
 font-size: 100%; /* don't use anything else for the default */
 font-weight: normal;
 font-family: helvetica, arial, sans-serif;
}

You can also use em's, such as:

body
{
 font-size: 1em;
 font-weight: normal;
 font-family: helvetica, arial, sans-serif;
}

and then base everything else upon that, such as:

h1
{
 font-size: 1.3em;
}

.copyright p
{
 font-size: 0.8em;
}

and so on.

Cheers,

tedd
--
-------
http://sperling.com/
______________________________________________________________________
css-discuss [cs...@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