بوت استرپ Table مؤلفه ای با گزینه های مختلف برای ارائه اجزای منحصر به فرد جدول که مطابق با استانداردهای طراحی مترونیک است.
افزودن base class .table to any table, then extend with custom styles or our various included modifier classes.
| # | First | Last | وضعیت |
|---|---|---|---|
| 1 | نوید | Stone | در انتظار |
| 2 | Ana | Jacobs | تایید شده |
| 3 | Larry | Pettis | جدید |
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">وضعیت</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>نوید</td>
<td>Stone</td>
<td>
<span class="label label-inline label-light-primary font-weight-bold">
در انتظار
</span>
</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Ana</td>
<td>Jacobs</td>
<td>
<span class="label label-inline label-light-success font-weight-bold">
تایید شده
</span>
</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>Pettis</td>
<td>
<span class="label label-inline label-light-danger font-weight-bold">
جدید
</span>
</td>
</tr>
</tbody>
</table>
Invert the colors with light text on dark backgrounds using .table-dark.
| # | First | Last | وضعیت |
|---|---|---|---|
| 1 | نوید | Stone | در انتظار |
| 2 | Ana | Jacobs | تایید شده |
| 3 | Larry | Pettis | جدید |
<table class="table table-dark">
...
</table>
Add .rounded class to .table for rounded edges.
| # | First | Last | وضعیت |
|---|---|---|---|
| 1 | نوید | Stone | در انتظار |
| 2 | Ana | Jacobs | تایید شده |
| 3 | Larry | Pettis | جدید |
<table class="table table-dark rounded">
...
</table>
Use the modifier classes .thead-light or .thead-dark to make <thead>s appear light or dark gray.
| # | First | Last | وضعیت |
|---|---|---|---|
| 1 | نوید | Stone | در انتظار |
| 2 | Ana | Jacobs | تایید شده |
| 3 | Larry | Pettis | جدید |
| # | First | Last | وضعیت |
|---|---|---|---|
| 1 | نوید | Stone | در انتظار |
| 2 | Ana | Jacobs | تایید شده |
| 3 | Larry | Pettis | جدید |
<table class="table">
<thead class="thead-dark">
...
</thead>
<tbody>
...
</tbody>
</table>
<table class="table">
<thead class="thead-light">
...
</thead>
<tbody>
...
</tbody>
</table>
Use .table-striped to add zebra-striping to any table row within the <tbody>.
| # | First | Last | وضعیت |
|---|---|---|---|
| 1 | نوید | Stone | در انتظار |
| 2 | Ana | Jacobs | تایید شده |
| 3 | Larry | Pettis | جدید |
| # | First | Last | وضعیت |
|---|---|---|---|
| 1 | نوید | Stone | در انتظار |
| 2 | Ana | Jacobs | تایید شده |
| 3 | Larry | Pettis | جدید |
<table class="table table-striped">
...
</table>
<table class="table table-striped table-dark">
...
</table>
Add .table-bordered for borders on all sides of the table and cells.
| # | First | Last | وضعیت |
|---|---|---|---|
| 1 | نوید | Stone | در انتظار |
| 2 | Ana | Jacobs | تایید شده |
| 3 | Larry | Pettis | جدید |
| # | First | Last | وضعیت |
|---|---|---|---|
| 1 | نوید | Stone | در انتظار |
| 2 | Ana | Jacobs | تایید شده |
| 3 | Larry | Pettis | جدید |
<table class="table table-bordered">
...
</table>
<table class="table table-bordered table-dark">
...
</table>
Add .table-borderless for a table without borders.
| # | First | Last | وضعیت |
|---|---|---|---|
| 1 | نوید | Stone | در انتظار |
| 2 | Ana | Jacobs | تایید شده |
| 3 | Larry | Pettis | جدید |
| # | First | Last | وضعیت |
|---|---|---|---|
| 1 | نوید | Stone | در انتظار |
| 2 | Ana | Jacobs | تایید شده |
| 3 | Larry | Pettis | جدید |
<table class="table table-borderless">
...
</table>
<table class="table table-borderless table-dark">
...
</table>
Add .table-hover for a table with hover effect.
| # | First | Last | وضعیت |
|---|---|---|---|
| 1 | نوید | Stone | در انتظار |
| 2 | Ana | Jacobs | تایید شده |
| 3 | Larry | Pettis | جدید |
| # | First | Last | وضعیت |
|---|---|---|---|
| 1 | نوید | Stone | در انتظار |
| 2 | Ana | Jacobs | تایید شده |
| 3 | Larry | Pettis | جدید |
<table class="table table-hover">
...
</table>
<table class="table table-hover table-dark">
...
</table>
Add .table-sm to make tables more compact by cutting cell padding in half.
| # | First | Last | وضعیت |
|---|---|---|---|
| 1 | نوید | Stone | در انتظار |
| 2 | Ana | Jacobs | تایید شده |
| 3 | Larry | Pettis | جدید |
<table class="table table-sm">
...
</table>Use contextual classes to color table rows or individual cells.
| کلاس | Heading | Heading |
|---|---|---|
| فعال | Cell | Cell |
| پیش فرض | Cell | Cell |
| اولیه | Cell | Cell |
| ثانویه | Cell | Cell |
| موفقیت | Cell | Cell |
| هشدار | Cell | Cell |
| اخطار | Cell | Cell |
| اطلاعات | Cell | Cell |
| Light | Cell | Cell |
| Dark | Cell | Cell |
<table class="table">
<thead>
<tr>
<th scope="col">کلاس</th>
<th scope="col">Heading</th>
<th scope="col">Heading</th>
</tr>
</thead>
<tbody>
<tr class="table-active">
<th scope="row">فعال</th>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr>
<th scope="row">پیش فرض</th>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr class="table-primary">
<th scope="row">اولیه</th>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr class="table-secondary">
<th scope="row">ثانویه</th>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr class="table-success">
<th scope="row">موفقیت</th>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr class="table-danger">
<th scope="row">هشدار</th>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr class="table-warning">
<th scope="row">اخطار</th>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr class="table-info">
<th scope="row">اطلاعات</th>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr class="table-light">
<th scope="row">Light</th>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr class="table-dark">
<th scope="row">Dark</th>
<td>Cell</td>
<td>Cell</td>
</tr>
</tbody>
</table>Regular table background variants are not available with the dark table, however, you may use text or background utilities to achieve similar styles.
| # | Heading | Heading |
|---|---|---|
| 1 | Cell | Cell |
| 2 | Cell | Cell |
| 3 | Cell | Cell |
| 4 | Cell | Cell |
| 5 | Cell | Cell |
| 6 | Cell | Cell |
| 7 | Cell | Cell |
| 8 | Cell | Cell |
| 9 | Cell | Cell |
<table class="table table-dark">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Heading</th>
<th scope="col">Heading</th>
</tr>
</thead>
<tbody>
<tr class="bg-primary">
<th scope="row">1</th>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr class="bg-success">
<th scope="row">3</th>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr>
<th scope="row">4</th>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr class="bg-info">
<th scope="row">5</th>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr>
<th scope="row">6</th>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr class="bg-warning">
<th scope="row">7</th>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr>
<th scope="row">8</th>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr class="bg-danger">
<th scope="row">9</th>
<td>Cell</td>
<td>Cell</td>
</tr>
</tbody>
</table>A <caption> functions like a heading for a table. It helps users with screen readers to find a table and understand what it’s about and decide if they want to read it.
| # | First | Last | وضعیت |
|---|---|---|---|
| 1 | نوید | Stone | در انتظار |
| 2 | Ana | Jacobs | تایید شده |
| 3 | Larry | Pettis | جدید |
<table class="table">
<caption>لیست of users</caption>
<thead>
<tr>
...
</tr>
</thead>
<tbody>
...
</tbody>
</table>
ریسپانسیو tables allow tables to be scrolled horizontally with ease. Make any table responsive across all viewports by wrapping a
.table with .table-responsive.
Or, pick a maximum breakpoint with which to have a responsive table up to by using .table-responsive{-sm|-md|-lg|-xl}.
| # | Heading | Heading | Heading | Heading | Heading | Heading | Heading | Heading | Heading |
|---|---|---|---|---|---|---|---|---|---|
| 1 | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell |
| 2 | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell |
| 3 | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell |
<div class="table-responsive">
<table class="table">
...
</table>
</div>
Use .table-responsive{-sm|-md|-lg|-xl} as needed to create responsive tables up to a particular breakpoint. از جانب that breakpoint and up, the table will behave normally and not scroll horizontally.
| # | Heading | Heading | Heading | Heading | Heading |
|---|---|---|---|---|---|
| 1 | Cell | Cell | Cell | Cell | Cell |
| 2 | Cell | Cell | Cell | Cell | Cell |
| 3 | Cell | Cell | Cell | Cell | Cell |
<div class="table-responsive-lg">
<table class="table">
...
</table>
</div>