zurb-foundation-5
Version:
Foundation 5 for npm (no code modification from original repo)
18 lines (16 loc) • 595 B
HTML
{{#markdown}}
```scss
.your-class-name {
block-grid(
// This controls how many elements will be on each row of the block grid. Set this to whatever number you need, up to the max allowed in the variable.
// Available options: 1-12 by default, and false.
$per-row: 3,
// This controls how much space is between each item in the block grid.
// Use a variable or any pixel or em values.
$spacing: $block-grid-default-spacing,
// This controls whether or not base styles come through, set to false to leave out.
$base-style: true
);
}
```
{{/markdown}}