View Full Version : A Table Like This


stinka
06-02-2003, 12:41 AM
Even though I like this layout, I don't want to copy it. But I just want the code for how to do make two tables coming down like his: http://www.youthless.net/yl/test.html
All I want is a code for two tables going side by side with no border like his and a colored background. Does anyone know how to get that? Thx.

Alcy
06-02-2003, 12:56 AM
Those are two positioned DIVs and a tiling background. The background is very thin, but has been made to the length of the screen.

The DIVs would be something similar to:
<div style="position:absolute; top:#px; left:#px; width:#px;">
TEXT. TEXT.
</div>

If you don't specify a length for the DIV, it'll go stop at the bottom of the page (or whenever the text ends).

stinka
06-02-2003, 01:49 AM
I'm sorry. But I'm not that good with tables. Well, I'm not good with tables at all. I can configure them for myself, but I don't know how to build them from scratch. Can you be a little bit more specific?

Alcy
06-02-2003, 09:07 PM
They aren't tables at all, they're DIVs. You can use the <div> tag to position text anywhere on the page :)

stinka
06-02-2003, 09:28 PM
Ok, I got ya now. Thanks.