我有div彼此相邻的元素display: table-cell;.
我想margin在它们之间设置,但margin: 5px没有效果.为什么?
我的代码:
<div style="display: table-cell; margin: 5px; background-color: red;">1</div>
<div style="display: table-cell; margin: 5px; background-color: green;">1</div>
Run Code Online (Sandbox Code Playgroud) 我这里有两个div:
<div style="display:table-cell" id="div1">
content
</div>
<div style="display:table-cell" id="div2">
content
</div>
Run Code Online (Sandbox Code Playgroud)
有没有办法在这两个div(有display:table-cell)之间留出空间?