OZONE Asylum
Forums
XML - XSL - XSLT - XHTML - CSS - DOM
Help with Absolute Positioning
This page's ID:
22558
Search
QuickChanges
Forums
FAQ
Archives
Register
Edit Post
Who can edit a post?
The poster and administrators may edit a post. The poster can only edit it for a short while after the initial post.
Your User Name:
Your Password:
Login Options:
Remember Me On This Computer
Your Text:
Insert Slimies »
Insert UBB Code »
Close
Last Tag
|
All Tags
UBB Help
Hey Karl, don't know if there is a reason you have done it the way you have with classes, but I would propose you use divs that contain tables. the tables are for the tabular data you are showing, not for presentation purposes so it would be correct ccs-wise. css would look like this; <style type="text/css"> #schedsquad { position: absolute; top: 100px; left: 100px; width: 75px; height: 400px; border: 2px solid #000000; } #schedsquad table { border-top: 1px solid #cecece; border-left: 1px solid #cecece; width: 75px; height: 400px; } #schedsquad td { text-align: center; border-right: 1px solid #cecece; border-bottom: 1px solid #cecece; width: 75px; height: 100px; } #schedsquad2 { position: absolute; top: 100px; left: 200px; width: 75px; height: 600px; border: 2px solid #000000; } #schedsquad2 table { border-top: 1px solid #cecece; border-left: 1px solid #cecece; width: 75px; height: 600px; } #schedsquad2 td { text-align: center; border-right: 1px solid #cecece; border-bottom: 1px solid #cecece; width: 75px; height: 150px; } </style> html would loook like this: <div id="schedsquad"> <table cellspacing="0" cellpadding="0"> <tr> <td>G1 - S1</td> </tr> <tr> <td>G1 - S1</td> </tr> <tr> <td>G1 - S1</td> </tr> <tr> <td>G1 - S1</td> </tr> </table> </div> <div id="schedsquad2"> <table cellspacing="0" cellpadding="0"> <tr> <td>G2 - S2</td> </tr> <tr> <td>G2 - S2</td> </tr> <tr> <td>G2 - S2</td> </tr> <tr> <td>G2 - S2</td> </tr> </table> </div> [small](Edited by [internallink=957]wcr one[/internallink] on 07-14-2004 23:35)[/small]
Loading...
Options:
Enable Slimies
Enable Linkwords
« Backwards
—
Onwards »