Example
Header
Header
Header
Header
Header
Cell
Cell
Cell
Cell
Cell
Markup
<div class="table">
<div class="table__row table__row--header">
<div class="table__cell">Header</div>
<div class="table__cell">Header</div>
<div class="table__cell">Header</div>
<div class="table__cell">Header</div>
<div class="table__cell">Header</div>
</div>
<div class="table__row">
<div class="table__cell">Cell</div>
<div class="table__cell">Cell</div>
<div class="table__cell">Cell</div>
<div class="table__cell">Cell</div>
<div class="table__cell">Cell</div>
</div>
</div>
Source:
build/doc/doc.css
, line 4213
Examples
Default styling
- List
- List
- List
.checkList
Checklist
- List
- List
- List
Markup
<ul class="[modifier class]">
<li>List</li>
<li>List</li>
<li>List</li>
</ul>
Source:
build/doc/doc.css
, line 9927
Example
Header | Header | Header | Header | Header |
---|---|---|---|---|
Cell | Cell | Cell | Cell | Cell |
Markup
<table>
<tr>
<th>Header</th>
<th>Header</th>
<th>Header</th>
<th>Header</th>
<th>Header</th>
</tr>
<tr>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
</tr>
</table>
Source:
build/doc/doc.css
, line 4155