I’m already spending way too much time about two divs placed inside the footer that are placed outside the container for some reason. Checked my HTML and CSS over and over but can’t see what’s wrong with it.
It’s probably a floating/clearing issue or some little typo in my code but I just can’t find it. Any help solving this is really appreciated.
The page can be found at http://nionwebdesign.com/dev/check. It’s about the ‘Bestellen’ and ‘Info’ parts that are placed outside the white container.
Thanks in advance!
Probably you have them floated. Parent elements are never to expand to contain floated elements. To have this do what you want, add
overflow:autoto the “container” parent element.