Demo: Absolute Positioning

We will position the elements with two rules. The first rule will position the outer SPAN absolutely, 200 pixels over and 200 pixels down:

#outer { position: absolute; 
         top: 200px; 
         left: 200px; 
         color: red  }