CSS Font Color
Although the color of the text seems like it would be part of CSS Font, it actually is a standalone attribute in CSS. This could be for many reasons, including the fact that it will be used a great deal, so why make the coder type out "font-color", when they could just type out "color" instead? Here's an example of changing the color of your font.
CSS Code:
h4 { color: red; }
h5 ( color: #9000A1; }
h6 { color: rgb(0, 220, 9
Display:
This is a red h4 header.
This is a hexadecimal #9000A1 h5 header.
This is an rgb(0, 220, 9
In the above example we used three different formats for defining a color: a color name, hexadecimal values, and RGB. Check out the list of supported color names. Hexadecimal form is a pound sign (#) followed by at most 6 hex values (0-F). RGB defines the individual values for Red, Green, and Blue.
Example form: rbg( Red, Green, Blue); with the range of 0-255 for each value.
CSS Font Family
Font family's can be divided into two groups: serif and san serif. A san serif font does not include the small lines at the end of characters, while a serif font does include these small lines. When choosing which kind you prefer, remember that studies have shown that sans serif fonts are much easier to read on a computer monitor as opposed to a serif font.
CSS Code:
h4 { font-family: sans-serif; }
h5 ( font-family: serif; }
h6 { font-family: arial; }
Display:
This is a header with sans-serif font
This is a header with a serif font
This is a header with an arial font
As you probably noticed throughout Tizag.com, we do not use serif fonts, except for special cases, like the titles of the Code and Display boxes.
CSS Font Size
You can manipulate the size of your fonts by using values, percentages, or key terms. Using values are useful if you do not want the user to be able to increase the size of the font because your site will look incorrect if they did so. Percentages are great when you want to change the default font, but do not want to set a static value
CSS Code:
p { font-size: 120%; }
ol{ font-size: 10px; }
ul{ font-size: x-large; }
Display:
This is a font size of 120%
This is a font size of 10px
This is a font size of "x-large"
Though key terms are not very useful, the common terms are: xx-large, x-large, large, medium, small, x-small, and xx-small.
CSS Font Style
CSS Font-Style is where you define if your font will be italic or not. Possible key terms are the following: italic, oblique, and normal.
CSS Code:
p { font-style: italic; }
h4{ font-style: oblique; }
Display:
This is an italic font
This is an oblique font
CSS Font Weight
If you want to control the weight of your font ( its thickness ), using font weight is the best way to go about it. We suggest that you only use font-weight in multiples of 100 (e.g. 200, 300, etc) because any less and you probably will not see any difference. The values range from 100(thin)-900(thick).
CSS Code:
p { font-weight: 100; }
ul{ font-weight: bolder; }
Display:
This is a font with a weight of 100
This is a font with
a "bolder" weight
Available key terms for font-weight: bold, bolder, and normal.
CSS Font Variant
CSS Font Variant allows you to convert your font to all small caps. Note: not every font supports CSS Font Variant, so be sure to test before you publish.
CSS Code:
p { font-variant: small-caps; }
Display:
This text was written normally and converted to small-caps
http://www.tizag.com/cssT/font.php
