Why this page change color?

When I resize the browser with this page.
http://coder9.com/jazportfolio/front/front_paginator/4

The page change color into blue.
What do you think I missed?

Thanks in advanced.

Use the firebug extension for chrome or firefox, then inspect the element that is the incorrect color. You’ll be able to see the file and line where the property is being applied from.

The color is set on the #contee div:

#contee {
background-color: #9400D3;
color: #000;
}

It doesn’t show up while the inner divs are floated because it collapses. If you added overflow: hidden it would always be there:

#contee {
background-color: #9400D3;
color: #000;
[COLOR="#FF0000"]overflow: hidden;[/COLOR]
}

@Force Flow
Thanks dude, I will remember that always.