Dear All,
I have a page here http://183.78.169.54/tree/1.html. I have split into 2 div side by side the problem when it appear on the browser it appear the form div is below the tree div. How to make it appear side by side exactly and the tree div to start exactly from left. Secondly my form have table strucuture but the label and the contents are far separate how to make them side by side too.
newbie14 0 Posting Pro
Recommended Answers
Jump to PostRemove the width from this rule in your CSS.
p { margin: 0 auto; padding: 1em 0; width: 680px; }
Regards
Arkinder
Jump to PostYou're floating the right column to the left. Instead, use
clear: left;
to make it start on the next line.#rightcolumn { clear: left; width: 380px; }
Regards
Arkinder
Jump to PostI'll let the W3C explain it. :)
If you would like for me to paraphrase it, just let me know.
Regards
Arkinder
All 12 Replies
G&G Designing 1 Junior Poster in Training
newbie14 0 Posting Pro
G&G Designing 1 Junior Poster in Training
Arkinder 93 Posting Pro in Training
newbie14 0 Posting Pro
Arkinder 93 Posting Pro in Training
newbie14 0 Posting Pro
Arkinder 93 Posting Pro in Training
newbie14 0 Posting Pro
Arkinder 93 Posting Pro in Training
newbie14 0 Posting Pro
Arkinder 93 Posting Pro in Training
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.