Back to Table Section
Table

Basic Data Table

#table

Live preview

Source code

html
<div class="container py-5">
  <h3 class="fw-bold mb-3">Products</h3>
  <div class="table-responsive">
    <table class="table table-bordered align-middle">
      <thead class="table-primary">
        <tr>
          <th>SKU ↕</th>
          <th>Product ↕</th>
          <th>Price ↕</th>
          <th>Stock ↕</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>SKU-001</td>
          <td>Wireless Mouse</td>
          <td>$29</td>
          <td>142</td>
        </tr>
        <tr>
          <td>SKU-002</td>
          <td>Mechanical Keyboard</td>
          <td>$89</td>
          <td>56</td>
        </tr>
        <tr>
          <td>SKU-003</td>
          <td>USB-C Hub</td>
          <td>$45</td>
          <td>0</td>
        </tr>
        <tr>
          <td>SKU-004</td>
          <td>Laptop Stand</td>
          <td>$35</td>
          <td>78</td>
        </tr>
      </tbody>
    </table>
  </div>
</div>

More designs in this section