Demo: Absolute Positioning

We will position the elements with this style sheet:

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

#inner { color: blue }

We will position the outer SPAN 200 pixels over and 200 pixels down. The inner SPAN is not positioned, so it will flow naturally within the outer SPAN.