TableView

Fruits Energy (KCal) Color
Papaya 11845 Orange
Grapes 12867 Green
Apple 10867 Red

Usage


<div class="app-table-view-container">
  <table class="app-table-view">
    <thead>
      <tr>
        <th align="left">Fruits</th>
        <th align="left">Energy (KCal)</th>
        <th align="left">Color</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>Papaya</td>
        <td>11845</td>
        <td>Orange</td>
      </tr>
      <tr>
        <td>Grapes</td>
        <td>12867</td>
        <td>Green</td>
      </tr>
      <tr>
        <td>Apple</td>
        <td>10867</td>
        <td>Red</td>
      </tr>
    </tbody>
  </table>
</div>