-
Notifications
You must be signed in to change notification settings - Fork 70
Table Grid
Vinicius Reif Biavatti edited this page Jan 3, 2021
·
2 revisions
The table grid uses the old concept to create HTML layout. This component uses the table to create the structure. This is most used to make some bordered panels or to have a better experience to create tui layouts. An example with this component is BIOS. Check it in Examples page.
These are some examples for component:
<!-- Table grid example -->
<table class="tui-table-grid">
<tbody>
<tr>
<td rowspan="2" width="60%">
...
</td>
<td width="40%" class="center">
...
</td>
</tr>
<tr>
<td width="25" height="200px">
...
</td>
</tr>
<tr>
<td colspan="2" width="25">
...
</td>
</tr>
</tbody>
</table>
This is the table with available classes for this component.
Class | Description |
---|---|
.tui-table-grid |
Creates a table grid. It is used in table element |
Copyright © 2022 Vinícius Reif Biavatti
- Home
- Getting Started
- Examples
- Custom Theme
- Contributing
- Showcase
- Components
- Styles