<html>
<style>
div#A   {position:relative; border-style:dotted ; border-color:#000000 ; 
         border-width:2px; width:450px ; padding:5px  }
p       {border-style:solid ; border-color:#000000 ; border-width:2px;
         padding:5px ; width:330px ; background-color:#FFFFFF }
p#two   {position:absolute ; left:225px ; top:-15px; background-color:#CCCCCC }
</style>

<h2> Relative then Absolute</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 absolutely, but relative to the parent element </p> 
<p>          Paragraph <b>three</b> <u>will </u> be repositioned to occupy the empty space</p> 

</div>

</html>