Example of the problem at: http://jsfiddle.net/xZmFg/4/

Surely there is a way to get the description to immediately follow the inputs (below, not to the right) and not end up below the menu...

I realise that with 'float' you are breaking out of the flow of the content, but isn't there a way to only apply to the space inside of the parent container?

link|improve this question

73% accept rate
feedback

2 Answers

up vote 5 down vote accepted

You can have your description's and form inputs' parent element contain all their floats using overflow: hidden:

.content-box {
    overflow: hidden;
}

This way, they won't interfere with the floats on the sidebar elements.

jsFiddle preview

link|improve this answer
My answer slightly differs from mu's answer in that .content-box stretches its width since I choose not to float it. – BoltClock Apr 20 '11 at 3:44
interesting solution - is this a documented behaviour in CSS? – HorusKol Apr 20 '11 at 4:50
@HorusKol: Should be somewhere in the box model spec... – BoltClock Apr 20 '11 at 10:09
after you gave me this, I was able to google a bunch about it. Looks like it is solid enough - I was just concerned that this could be one of those CSS hacks that evaporate all of a sudden. – HorusKol Apr 20 '11 at 22:53
1  
@HorusKol: Found it - setting overflow to something other than visible gives your parent element its own block formatting context. – BoltClock Dec 26 '11 at 16:43
feedback

You can float the container around the inputs and your paragraph:

.content {
    float: left;
}

And then drop the clear: left; on .description as it doesn't do anything (or leave it in).

http://jsfiddle.net/ambiguous/QdY44/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.