Example shortcode for table. Use default from bootstrap CSS.
Table default
# |
First Name |
Last Name |
Username |
1 |
Kentooz |
Themes |
@g14nnakal |
2 |
Kardun |
Boboho |
@kentooz |
3 |
Bos |
Romlah |
@twitter |
Table striped
# |
First Name |
Last Name |
Username |
1 |
Kentooz |
Themes |
@g14nnakal |
2 |
Kardun |
Boboho |
@kentooz |
3 |
Bos |
Romlah |
@twitter |
Table bordered
# |
First Name |
Last Name |
Username |
1 |
Kentooz |
Themes |
@g14nnakal |
2 |
Kardun |
Boboho |
@kentooz |
3 |
Bos |
Romlah |
@twitter |
Table hover
# |
First Name |
Last Name |
Username |
1 |
Kentooz |
Themes |
@g14nnakal |
2 |
Kardun |
Boboho |
@kentooz |
3 |
Bos |
Romlah |
@twitter |
Table condensed
# |
First Name |
Last Name |
Username |
1 |
Kentooz |
Themes |
@g14nnakal |
2 |
Kardun |
Boboho |
@kentooz |
3 |
Bos |
Romlah |
@twitter |
Contoh kode:
[table style="nonestyle"]
<table>
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Kentooz</td>
<td>Themes</td>
<td>@g14nnakal</td>
</tr>
<tr>
<td>2</td>
<td>Kardun</td>
<td>Boboho</td>
<td>@kentooz</td>
</tr>
<tr>
<td>3</td>
<td>Bos</td>
<td>Romlah</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
[/table]