<html>
<style>
p       {border-style:solid ; border-color:#000000 ; border-width:2px;
         padding:5px ; width:300px ; background-color:#FFFFFF }
p#two   {position:relative ; left:60px ; top:-30px; background-color:#CCCCCC }
</style>

<h2>Relative</h2>
<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 </p> 
<p>          Paragraph <b>three</b> <u>will not</u> be repositioned to occupy the empty space.</p> 
</html>