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/

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 swordheart313 的頭像
    swordheart313

    前端筆記

    swordheart313 發表在 痞客邦 留言(0) 人氣()