Hey, I was wondering how to do this, my current mark up is as follows:
<div id="playArea" style="position: relative;">
<div id="widget1" class="widget" style="position: absolute; left: 295px; top: -1px; width: 313px; height: 269px;">Hello</div>
<div id="widget2" class="widget" style="position: absolute; left: 63px; top: 35px; width: 80px; height: 42px;">World</div>
<div style="position: absolute; left: 534px; top: 329px; width: 183px; height: 251px;">Bye</div>
</div>
Now, if i create a paragraph tag after the last the content of the p tag is not appearing under all of these div's in the browser. Any ideas how i can do this?
Thanks guys