Consistent Spacing Between Elements in Zurb Foundation
The width of column gutters is defined in _settings.scss :
$column-gutter: rem-calc(30);
Use the $column-gutter variable for calculating spacing between elements, for example:
.header, .carousel {
margin-bottom: $colum-gutter;
}