Skip to content

Section

The section foundation defines vertical padding used to space out large content blocks like sections.


.f--section-{variation}

<div class="f--section-a">Section A</div>
<div class="f--section-c">Section C</div>
// using @extend (recommended)
.c--component-a {
@extend .f--section-b;
}
// using the mixin directly (only if necessary)
.c--component-a {
@include make-section-b();
}

Knowledge Check

Test your understanding of this section

Loading questions...