rainbowbrite
02-12-2003, 09:57 AM
can you absolute position tables on a page?
|
View Full Version : can you absolute position tables? rainbowbrite 02-12-2003, 09:57 AM can you absolute position tables on a page? epolady 02-12-2003, 10:53 AM Yes, many different ways you can do it... <div style="position: absolute; top: ##px; left: ##px;"> table tags here </div> ------ <table... style="position: absolute; top: ##px; left: ##px;"> ........ </table> -------- <style type="text/css"> .mytable{ position: absolute; top: ##px; left: ##px; } </style> <table class="mytable"> ....... </table> those are generic examples, you can add on with more CSS if you'd like. lilchici13 02-14-2003, 06:28 PM epolady...hav you ever done it because for some reason its not working for me :( epolady 02-14-2003, 07:38 PM Yes I have, which code are you using? |