Why margin collapsing is not happening in this case?
<p> First </p>
<p id="second"> Second </p>
p {
background-color:red;
margin-top:10px;
display:inline;
margin-right:10px;
}
#second {
margin-left:10px;
}
The marging between those two ends up being 20px, instead of 10px. Why?