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 4478
Example
Text
Markup
<span class="hardcodedHint" title="Title">Text</span>
Source:
build/doc/doc.css, line 3006
Example
Markup
<i class="icon icon-name"></i>
Source:
build/doc/doc.css, line 364
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 10187
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 4420