I want to have 3 div tags, a left, centre and right one all on the same line so the tops are all parallel. Unfortuantley it seems each one fits under the next, like steps. How can I get around this?
If you really want to use the <DIV> tag. You can surround all three of your <DIV>s with yet another <DIV>. In the parent <DIV> give it a position: relative; so that it will float with the other code in the page around it. And all the child <DIV>s will have position: absolute; left: 100px; with the left value being set by you for best viewing.
This is similar to Vlad's post with the only benefit that you can put these <DIV>s wherever you wish on the page.
I still think that Ed's answer is probably the most complete and succinct.
Einstein47 ("Vision without action is a daydream - Action without vision is a nightmare. Japanese Proverb"
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.