<html>
<style>
p {border-style:solid ; border-color:#000000 ; border-width:2px;
padding:5px ; width:300px ; background-color:#FFFFFF }
p#two {position:absolute ; left:250px ; top:35px; background-color:#CCCCCC }
</style>
<h1>Absolute</h1>
<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 on the page </p>
<p> Paragraph <b>three</b> <u>will</u> be repositioned to occupy the empty space.</p>
</html>