mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
17 lines
368 B
HTML
17 lines
368 B
HTML
<table class="table is-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>Class</th>
|
|
<th>Property: Value</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for value in include.values %}
|
|
<tr>
|
|
<td><code>is-{{ include.property }}-{{ value }}</code></td>
|
|
<td><code>{{ include.property }}: {{ value }}</code></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|