table

scss
table {
  
}

Base styling for table elements and its dependents, like th, tr etc.

Example

html
<table>
  <thead>
    <tr>
      <th>Some header</th>
      <th>Another header</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Some value</td>
      <td>Another value</td>
    </tr>
  </tbody>
</table>