<html>
<style>
div#A {position:absolute; border-style:dotted ; border-color:#000000 ;
border-width:2px; width:450px ; left: 100px; padding:5px }
p {border-style:solid ; border-color:#000000 ; border-width:2px;
padding:5px ; width:300px ; background-color:#FFFFFF }
p#two {position:relative ; left:225px ; top:-35px; background-color:#CCCCCC }
</style>
<h2> Absolute then Relative </h2>
<div id="A">
<p> This is the content of paragraph <b>one</b>. It is positioned normally </p>
<p id="two"> This is the content of paragraph <b>two</b>. It is positioned relative to where
it would have been inside the parent div element </p>
<p> Paragraph <b>three</b> <u>will not</u> repositioned to occupy the empty space</p>
</div>
</html>