Posted by Andy Dingley on 01/22/77 11:39
Wizumwalt@gmail.com wrote:
> I have a problem w/ the CSS below. I'm trying to make the columns show
> up side by side.
There are a few ways to get elements alongside each other in a CSS
context.
Absolute positioning is one, but generally evil.
Floats are another, but tricky to understand. Read the article at
brainjar.com for the best primer around.
<table> in HTML is the easiest. If you're needing 5 columns across the
page, then you might have some justification for doing it this way.
Your choice should also be influenced by how you want their positioning
to behave with different window sizes.
[Back to original message]
|