close
上一篇說到使用 display:table 讓div達城等高,但使用之後無法用margin來調整div之間的間隙。
如需要調整間隙,需要在display:table-cell的父層,也就是display:table這層加上 border-collapse 跟 border-spacing 。
css:
.row {
display: table;
border-collapse:separate;
border-spacing: 5px;
}
參考網址:http://muki.tw/tech/fix-display-table-cell-not-affected-by-margin/
全站熱搜