JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<div class="table-responsive">
  <table class="table">
    <thead>
      <tr>
        <th>XS</th>
        <th>S</th>
        <th>M</th>
        <th>L</th>
        <th>XL</th>
        <th>XXL</th>
        <th>XXXL</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td class="col-md-1"><input type="number" name="xs" ng-model="order.size.extra_small"></td>
        <td class="col-md-1"><input type="number" name="s" ng-model="order.size.small"></td>
        <td class="col-md-1"><input type="number" name="m" ng-model="order.size.medium"></td>
        <td class="col-md-1"><input type="number" name="l" ng-model="order.size.large"></td>
        <td class="col-md-1"><input type="number" name="xl" ng-model="order.size.extra_large"></td>
        <td class="col-md-1"><input type="number" name="xxl" ng-model="order.size.double_extra_large"></td>
        <td class="col-md-1"><input type="number" name="xxxl" ng-model="order.size.triple_extra_large"></td>
      </tr>
    </tbody>
  </table>
</div>