Site Design

  • Thread starter ALPHA
  • 6 comments
  • 437 views
Never thought of the colour schemes in the HTML, you may have to help me there!

I'll use CSS on the text but I would like to know in CSS is it possible to condense text? Like make the characters closer together?
 
Originally posted by ALPHA
Never thought of the colour schemes in the HTML, you may have to help me there!

I'll use CSS on the text but I would like to know in CSS is it possible to condense text? Like make the characters closer together?
Yes, it is possible:

Code:
.spacing {
	letter-spacing: 8px; [color=green]/* Space between individual letters */[/color]
	word-spacing: 20px; [color=green]/* Space between words */[/color]
	line-height: 32px; [color=green]/* Vertical space between lines of text [i]eg: lines in paragraph[/i] */[/color]
}
 
Back