View Full Version : Positions tables with CSS?


Tw!tch
10-08-2005, 07:09 AM
You know how you can put an image in an exact location on your page with CSS, I was wondering if you could do that with a table? Thanks!

pb&j
10-08-2005, 08:39 AM
sure can. might want to put it into a div first...

<div style="width:100px; height:100px; position:absolute; left:100px; top:100px;">
anything in here
</div>

change all of the 100 parts to your desire.