Home   CSS   Font-Properties   Box-Properties   Background-Color   List-Style   Pseudo-Units


Word Spacing:

normal | 'length'
  word-spacing: normal (a b c d)
  word-spacing: 1.2em (a b c d)
  word-spacing: -0.1em (a b c d)

Letter Spacing:

normal | 'length'
  letter-spacing: normal (abcd)
  letter-spacing: .6em (abcd)
  letter-spacing: -0.1em (abcd)

Text Decoration:

none | underline | overline | line-through | blink
  text-decoration: none
  text-decoration: underline
  text-decoration: overline
  text-decoration: line-through
  text-decoration: blink

Vertical Alignment:

baseline | sub | super | top | text-top | middle | bottom | text-bottom
  TEST vertical-align: baseline
  TEST vertical-align: sub
  TEST vertical-align: super
  TEST vertical-align: top
  TEST vertical-align: text-top
  TEST vertical-align: middle
  TEST vertical-align: bottom
  TEST vertical-align: text-bottom
  TEST vertical-align: 50%
  TEST vertical-align: -50%

Text Transformation:

none | capitalize | uppercase | lowercase
  text-transform: none
  text-transform: capitalize
  text-transform: uppercase
  text-transform: lowercase

Text Alignment:

left | right | center | justify
 
text-align: left
text-align: right
text-align: center
text-align: justify

Line Height:

normal | 'number' | 'length' | 'percentage'
 
line-height: normal
line-height: 3
line-height: 5em
line-height: 200%

Text Indentation:

 
 
Text inside of <h5>
 
<h5>text-indent: 10em</h5>
 
<h5>text-indent: 50%</h5>