<table class="table is-fullwidth">
<caption>CBP Design System Table Code Example</caption>
  
  <thead>
    <tr>
      <th scope="col">Time</th>
      <th scope="col">Page Updated</th>
      <th scope="col">Data Field</th>
      <th scope="col">Previous Value</th>
      <th scope="col">New Value</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td scope="row">08/12/19 10:00:01 EST</td>
      <td>User Profile</td>
      <td>Seller's First Name</td>
      <td>Thomas</td>
      <td>Bill</td>
    </tr>

    <tr>
      <td scope="row">10/07/19 02:34:11 EST</td>
      <td>Product Information</td>
      <td>Date</td>
      <td>04/02/18</td>
      <td>04/04/18</td>
    </tr>

    <tr>
      <td scope="row">12/12/19 11:05:49 EST</td>
      <td>Product Information</td>
      <td>Seller's First Name</td>
      <td>Samantha</td>
      <td>Sam</td>
    </tr>
  </tbody>

</table>


body {
    font-family: 'Roboto', sans-serif;
}

thead {
    tr {
        &:first-child {
            background-color: #EEEEEE;
        }
    }
}
  





View Compiled

External CSS

  1. https://cdn.jsdelivr.net/npm/bulma@0.8.0/css/bulma.css
  2. https://fonts.googleapis.com/css?family=Roboto&amp;display=swap

External JavaScript

This Pen doesn't use any external JavaScript resources.