-div style=left, right, center: basically this tells you where you info will be positioned on your website
-width: this tells how wide you can make your table so to speak where text wrapping begins
-height: this tells you how long the vertical postion will be and how far down you can go on your website with infomation
-absolute: top, bottom, : this tells you where you would like to position your area of infomation on your website it is
CODE
<div style="left: 0px; width: 0px; position: absolute; top: 0px; height: 0px">
<div style="right: 0px; width: 0px; position: absolute; top: 0px; height: 0px">
<div style="center: 0px; width: 0 px; position: absolute; top: 0 px; height: 0px">
when using mutiple div tags you want to close it each time EXAMPLE:
CODE
<div style="left: 0px; width: 0px; position: absolute; top: 0px; height: 0px"></div>
<div style="right: 0px; width: 0px; position: absolute; top: 0px; height: 0px"></div>
<div style="center: 0px; width: 0 px; position: absolute; top: 0 px; height: 0px"></div>
and then when you want to completly close it just put a </div> at the end of the document like this
CODE
</div>
</body
</html>
if i missed anything left me know


