如何为基础行div指定css margin-top?

时间:2015-06-22 11:33:10

标签: css zurb-foundation

如何为基础行div指定css margin-top? 使用Chrome开发工具看起来像foundation.css会覆盖.row divs的任何边距属性 - 无论我把css放在哪里。

为了今天出门,我已经在行之间插入了自己的div - yuk。

1 个答案:

答案 0 :(得分:1)

使用:

div.row {
  margin-top: 12px;
}

.row {
  margin-top: 12px !important;
}