Ok, I hope this isn\'t a simple oversight but I have been working on this for hours!
I have a fairly complex HTML / CSS structure on a page I\'m working with. I have
Add overflow: hidden
to #SubmissionDetails
to fix the margin problem by preventing the behaviour of collapsing margins on that div
.
Add a doctype as the very first line to escape Quirks Mode and fix your page in Internet Explorer:
(You could also use the much shorter , I just stuck with what you had)
Making this change will also improve things in other browsers (that is, it will improve the consistency).