<table class="table">
  <thead>
    <tr>
      <th scope="col">#</th>
      <th scope="col">Name</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th scope="row">1</th>
      <td>Ali</td>
    </tr>
  </tbody>
</table><!-- On tables -->
<table class="table-primary">...</table>
<table class="table-secondary">...</table>
<table class="table-success">...</table>
<table class="table-danger">...</table>
<table class="table-warning">...</table>
<table class="table-info">...</table>
<table class="table-light">...</table>
<table class="table-dark">...</table>
<!-- On rows -->
<tr class="table-primary">...</tr>
<tr class="table-secondary">...</tr>
<tr class="table-success">...</tr>
<tr class="table-danger">...</tr>
<tr class="table-warning">...</tr>
<tr class="table-info">...</tr>
<tr class="table-light">...</tr>
<tr class="table-dark">...</tr>
<!-- On cells (`td` or `th`) -->
<tr>
  <td class="table-primary">...</td>
  <td class="table-secondary">...</td>
  <td class="table-success">...</td>
  <td class="table-danger">...</td>
  <td class="table-warning">...</td>
  <td class="table-info">...</td>
  <td class="table-light">...</td>
  <td class="table-dark">...</td>
</tr>
<table class="table table-striped">
  ...
</table>
<table class="table table-dark table-striped">
  ...
</table><table class="table table-hover">
  ...
</table><table class="table table-dark table-hover">
  ...
</table><table class="table">
  <thead>
    ...
  </thead>
  <tbody>
    <tr class="table-active">
      <td>1</td>
      <td>Ali</td>
    </tr>
    <tr>
      <td>1</td>
      <td class="table-active">Ali</td>
    </tr>
  </tbody>
</table><table class="table table-bordered">
  ...
</table><table class="table table-borderless">
  ...
</table><table class="table table-sm">
  ...
</table><div class="table-responsive">
  <table class="table align-middle">
    <thead>
      <tr>
        ...
      </tr>
    </thead>
    <tbody>
      <tr>
        ...
      </tr>
      <tr class="align-bottom">
        ...
      </tr>
      <tr>
        <td>...</td>
        <td>...</td>
        <td class="align-top">This cell is aligned to the top.</td>
        <td>...</td>
      </tr>
    </tbody>
  </table>
</div><table class="table table-striped">
  <thead>
    ...
  </thead>
  <tbody>
    ...
    <tr>
      <td colspan="4">
        <table class="table mb-0">
          ...
        </table>
      </td>
    </tr>
    ...
  </tbody>
</table>
<table class="table">
  <caption>List of users</caption>
  <thead>
    ...
  </thead>
  <tbody>
    ...
  </tbody>
  <tfoot>
    ...
  </tfoot>
</table>
<div class="table-responsive">
  <table class="table">
    ...
  </table>
</div><div class="table-responsive">
  <table class="table">
    ...
  </table>
</div>
<div class="table-responsive-sm">
  <table class="table">
    ...
  </table>
</div>
<div class="table-responsive-md">
  <table class="table">
    ...
  </table>
</div>
<div class="table-responsive-lg">
  <table class="table">
    ...
  </table>
</div>
<div class="table-responsive-xl">
  <table class="table">
    ...
  </table>
</div>
<div class="table-responsive-xxl">
  <table class="table">
    ...
  </table>
</div>