I agree with all the above. Browsers will generally style <strong> as bold
> and <em> as italic, but to ensure that:



strong {
font-weight: bold;
}

em {
font-style: italic;
}

to style hyperlinks, try and follow this order, for example:

a:link, a:visisted {
font-weight: bold;
text-decoration: none;
}

a:hover, a:active {
font-weight: bold;
text-decoration: underline;
}

...remember, some people are colour-blind and will not be able to
differentiate links just because they are another colour so another cue is
useful.






-- 
http://www.web-buddha.co.uk
http://www.projectkarma.co.uk
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to