Properties (selection)

  • color and background

    element
    { 
      color: red; 
      background-image: url(test.gif); 
      background-attachment: fixed;
      background-color: #00ff00;
      background-position: top left;
      background-repeat: repeat-x;
    }
    					
  • font

    element
    { 
      font-stretch: ultra-condensed; 
      font-family: courier, serif; 
      font-size: 10px; 
      font-size-adjust: 0.58; 
      font-style: italic;
      font-variant: small-caps;
      font-weight: bold;
    }
    					
  • text

    element
    { 
      text-indent: 3em; 
      text-align: center; 
      text-decoration: underline; 
      text-shadow: 0.2em 0.2em; 
      letter-spacing: 0.1em;
      word-spacing: 1em;
      text-transform: uppercase;
      white-space: pre;
    }