SaveASmile.co.ukEach day, thousands of families throughout Britain deal with the consequences of bullying, and can find little in their lives to smile about. But, with a little help from YOU, we can make a difference.
New CCKW LayoutThe new layout is here, ore enhancements will be coming in the near future.
Floating is a very common occurrence in web development, and with SEO screaming there heads off at every little piece of extra code. It is extremely common for developers to use clear:both after floated elements. This ensures that the parent element has the correct height.
However did you know that its not needed and all you needed to do was set overflow on the container?
Nope? Neither did I.
So throw away you clear mind and get into the overflow. (apologies for the cheesiness)
div.wrapper {
border: 1px solid #000000;
overflow: auto;
width: 100%
}