Tables

Default Table

#
First Name
Last Name
UserName

1
Mark
Otto
@mdo

2
Jacob
Thornton
@fat

<table class=”table”>
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>UserName</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
</tbody>
</table>

Striped Table

#
First Name
Last Name
UserName

1
Mark
Otto
@mdo

2
Jacob
Thornton
@fat

<table class=”table table-striped”>
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>UserName</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
</tbody>
</table>

Bordered table

#
First Name
Last Name
Username

1
Mark
Otto
@mdo

Mark
Otto
@TwBootstrap

2
Jacob
Thornton
@fat

3
Larry the Bird
@twitter

<table class=”table table-bordered”>
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan=”2″>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>Mark</td>
<td>Otto</td>
<td>@TwBootstrap</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td colspan=”2″>Larry the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *