Skip to content

Table

Overview

Applies styles to create a table.

html
<table class="c-table">
    <thead>
        ...
    </thead>
    <tbody>
        ...
    </tbody>
</table>

Demo on CodePen

Modifiers

Border

NameDescription
c-table--border-cellsSets a border around all cells.
c-table--border-rowsSets a border above all rows.
html
<table class="c-table c-table--border-cells">
    <thead>
        ...
    </thead>
    <tbody>
        ...
    </tbody>
</table>

Demo on CodePen

Notes

Wrap the table with the scroll behavior to allow horizontal scrolling on small screens.

html
<div class="b-scroll">
    <table class="c-table b-scroll__body">
        <thead>
            ...
        </thead>
        <tbody>
            ...
        </tbody>
    </table>
</div>

Demo on CodePen