| Web Design Programming Half-Life Counter-Strike Rainbow 6 E-Mail TunkeyMicket | |||
|
ADB's Tutorials
CSS Tutorials
empty empty empty Arsenal |
CSS Tutorial [page 5]
The first thing that CSS is generally used for is text manipulation. Common changes include font color,
font size, font face, and font properties. Below are the common font properties:
Those are not the only properties for fonts, but rather the most commonly used ones. Below I have listed
many text properties that deal with the positioning and other effects particular to a block of text:
<HTML>
<HEAD> <TITLE>CSS Class Tutorial</TITLE> <STYLE> FONT#bluefont { color: blue; font: bold italic; } B.greenfont { color: green; font: bold; } #grayfont { color: gray; font: italic; } .navyfont { color: navy; font: bold; } </STYLE> </HEAD> <BODY> <TT ID="grayfont">This is gray and italic!</TT> <B CLASS="greenfont">This is green and bold!</B> <FONT ID="bluefont">This is blue, bold, and italic!</FONT> <I CLASS="redfont">This is navy and bold!</I> </BODY> </HTML>
Well, that is about all I can say for multiple statements. However, I know that telling you all this
is worth absolutely jack, UNLESS you know what properties you can use in a CSS declaration. Guess what is next...
|
||
|
(C) 2000 TunkeyMicket Productions |
|||