Reputation: 1918
I know that is a popular problem, but I really ca't find a solution.. here my jsfiddle http://jsfiddle.net/vUqer/ As you can see, the
div id="layoutdueColonne"
go outside the
div id="content"
Why? Thank you very much!
Upvotes: 1
Views: 56
Reputation: 74018
You don't need the height
and min-height
in content
and layoutdueColonne
. When you remove them and add
#content
{
background-color: white;
overflow: hidden;
}
You will see both sq1
and sq2
inside content
.
Upvotes: 2
Reputation: 169
Does adding
overflow:scroll;
to your content div solve the problem, or am I missing something else?
Upvotes: 0
Reputation: 13534
The float left and right for sq1 and sq2 causes this problem. As workaround, try to combine the two tables into one table or just accept the two tables to be vertically arranged.
Upvotes: 1