There are basically the following classes:
note: These classes currently cover all of the width scenarios. If you need, another width class, please create one.
note: These classes don’t apply on mobile. If you want greater control over widths, like placing them inside of media queries, use the mixin versions of these classes with. This is because SASS doesn’t allow you to extend a class inside of a media query.
Fit four columns inside tag
<div>
<div class="width-sixth">I'm the first sixth</div>
<div class="width-two-thirds">I'm two thirds or four sixths!</div>
<div class="width-sixth">I'm the last sixth</div>
</div>
Fit four columns inside tag
<div>
<div class="width-quarter">I'm the first quarter</div>
<div class="width-quarter">I'm the second quarter</div>
<div class="width-quarter">I'm the third quarter</div>
<div class="width-quarter">I'm the fourth quarter</div>
</div>
Fit three columns inside tag
<div>
<div class="width-third">I'm the first third</div>
<div class="width-third">I'm the second third</div>
<div class="width-third">I'm the third third</div>
</div>
Fit two columns inside tag
<div>
<div class="width-half">I'm the first half</div>
<div class="width-half">I'm the second half</div>
</div>
Fit two columns inside tag
<div>
<div class="width-two-thirds">I'm the first two thirds</div>
<div class="width-third">I'm the last third</div>
</div>
Take up 75%
<div>
<div class="width-three-quarters">I take up 75%</div>
<div class="width-quarter">I take up 25%</div>
</div>
Take up 75%
<div>
<div class="width-whole">I take up all the width</div>
</div>