CSS specifies five so-called generic fonts which are guaranteed to exist in all browsers: serif , sans-serif , monospace , cursive and fantasy.
CSS supports 16 color names: aqua, black, blue, fuchsia, gray, green, lime, maroon, navy, olive, purple, red, silver, teal, yellow, white.
CSS supports the hexadecimal notation ("#FF0000" and "#F00") and also some other notations that may be easier to use. The following two rules both set the color of h1 elements to brown (50% red, 50% green, 0% blue):
H1 {color: #808000}
H1 {color: rgb(50%,50%,0%)}
http://www.w3.org/WAI/GL/css2em.htm
Some Fixed Width Advice:
Place your fixed width content on the left hand side of the page so on a typical site 640×480 pixel monitor users won't have to side scroll to read the site's primary content.
CSS supports 16 color names: aqua, black, blue, fuchsia, gray, green, lime, maroon, navy, olive, purple, red, silver, teal, yellow, white.
CSS supports the hexadecimal notation ("#FF0000" and "#F00") and also some other notations that may be easier to use. The following two rules both set the color of h1 elements to brown (50% red, 50% green, 0% blue):
H1 {color: #808000}
H1 {color: rgb(50%,50%,0%)}
http://www.w3.org/WAI/GL/css2em.htm
Some Fixed Width Advice:
Place your fixed width content on the left hand side of the page so on a typical site 640×480 pixel monitor users won't have to side scroll to read the site's primary content.

Leave a comment