<div id="container">
<div id="one"><p>one</p></div>
<div id="two"><p>two</p></div>
<div id="footer"><p>footer</p></div>
</div>
#container {
display: table;
width: 200px;
height: 200px;
background-color: red;
border-spacing: 5px;
}
#one {
display: table-cell;
background-color: yellow;
}
#two {
display: table-cell;
background-color: blue;
}
#footer {
display: table-footer-group;
background-color: green;
}
基本上我希望绿色页脚延伸到蓝色 ID 的末尾。在绿色页脚和黄色 ID 之间也是 10 像素而不是 5 像素。我究竟做错了什么 ?