CSS "Cascading Style Sheets" Lessons


CSS ( Cascading Style Sheets ) - Why CSS ? - Introduction - Css Link Properties / Examples - Css List Properties / Examples - Css Layer Properties / Examples - Css TextBox Properties / Examples - Css Font Properties / Examples - Css Text Properties / Examples - Css Cursor Properties / Examples - Css Background Properties / Examples - Css Table Properties / Examples - Css Scroll Bar Properties / Examples - Tools - Units - Parameters - Template Page - Web Design

FONT-STYLE

Example TD { font-family :Arial; }
Example TD { font-family :Verdana; }

FONT-SIZE

Example TD { font-size :12px;}
Example TD { font-size : 150%; }
Example TD { font-size : xx-small; }
Example TD { font-size : x-small; }
Example TD { font-size : medium; }
Example TD { font-size : large; }
Example TD {font-size : x-large;}
Example TD { font-size : xx-large; }

FONT-STYLE

Example TD {font-style : italic; }
Example TD {font-style : oblique; }
Example TD {font-style : normal; }

FONT-WEIGHT

Example TD14 {font-weight : bold; }
Example TD {font-weight : bolder; }
Example TD {font-weight : lighter; }
Example TD {font-weight :100; }
Example TD {font-weight : 600; }
Example TD {font-weight : 900; }
Example TD {font-weight : normal; }

FONT-VARIANT

Example TD {font-variant :small-caps; }
Example TD {font-variant : normal; }