I was under the impression that writing:
margin-bottom: 5px;
Would be the same as
margin: 0px 0px 5px 0px;
However the two behave differently. The second doesn't just add margin at the bottom, but also causes some margin to appear at the sides. I'm using Bootstrap scaffolding and it causes the content to wrap onto a new line.
Looking at Firebug I see:
margin: 0 0 5px;
Can you shed some light on what is happening here?