choosing web color....

  • Thread starter Thread starter Smith
  • Start date Start date
S

Smith

I have developed a web based application targeting various browsers
(different versions).

When I select the color... do I have to make any considerations? Anything
like true font etc..

Thanks,

Smith
 
No considerations for color. Browsers are not color value dependent in any
manner at all.
You can declare any font you want but if it is not present on the user's
machine it will not load and the next font declaration will take precedence.
A CSS example...

font-family: MumboJumbo, Verdana, Arial, Helvetica, sans-serif;

If MumboJumbo is installed on the user's computer it will be loaded and
used. If not Verdana is next, if not Arial, if not Helvetica (for Mac users)
and lastly the base default sans-serif.

<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee.com
URL http://metromilwaukee.com/
URL http://clintongallagher.metromilwaukee.com/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top