你可以把它包起来
display: table
div
div
然后在包装纸上加上页边
<p style="margin:100px">This is a paragraph with 100px margin all around.</p>
<div style="margin: 100px"><div style="border: solid red 2px; display: table;">
This is a div which had 100px margin all around and display:table, but the margin was moved to a wrapper div.
<br/>
The problem was that it didn't collapse margins with its neighbors.
</div></div>
<p style="margin:100px">This is a paragraph with 100px margin all around.</p>
<div style="margin: 100px; border: solid blue 2px; display: block;">
This is a div with 100px margin all around and display:block.
<br/>
The problem is that it expands to take up all available width.
</div>
<p style="margin:100px">This is a paragraph with 100px margin all around.</p>