Understanding Style Sheets (part 2) - Gimme My Space! (Page 3 of 8 )
You can also control the amount of space between characters with the "letter-spacing" property
<HTML>
<HEAD>
<STYLE TYPE="text/css">
P {letter-spacing: 30px}
</STYLE>
</HEAD>
<BODY>
<P>
Q.
How many psychoanalysts does it take to change a light bulb?
<P>
A. How many
do you think it takes?
</BODY>
</HTML>
or alter the indentation of the first line of each paragraph with the "text-indent"
property.
<HTML>
<HEAD>
<STYLE TYPE="text/css">
P {text-indent: 10px}
</STYLE>
</HEAD>
<BODY>
<P>
Q.
How many psychoanalysts does it take to change a light bulb?
<BR>
A. How many
do you think it takes?
</BODY>
</HTML>
Next: Reclining Every Which Way >>
More Style-Sheets Articles
More By icarus, (c) Melonfire