The Huff
The Huff

Reputation: 485

How do I specify a css margin-top for foundation row div?

How do I specify a css margin-top for foundation row div? Using the Chrome dev tools it looks like foundation.css is overriding any margin properties for .row divs - regardless of where I put the css.

In the interest of getting something out the door today I have resorted to inserting my own divs between the rows - yuk.

Upvotes: 0

Views: 4710

Answers (1)

Roumelis George
Roumelis George

Reputation: 6746

Use:

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

or

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

Upvotes: 1

Related Questions