JSFiddle - React, Tailwind, and code Playground

by mibrahim01

HTML

<script src="//code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<link rel="stylesheet" href="//stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<script src="//stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Load all manufacturers in a datalist -->
<datalist id="manufacturers">
  <option value="Windows Direct Ltd">
  <option value="Heating Supplies Ltd">
  <option value="Wood Supplies and Design Ltd">
  <option value="Spare Parts">
  <option value="Fireplaces T/A Fire for Campervans">
  <option value="Windows Direct">
</datalist>

<!-- Load a distinct list of possible features in a datalist -->
<datalist id="features">
  <option value="18' alloy wheels">
  <option value="Upgraded tyres">
  <option value="Water heater">
  <option value="Solar panels">
  <option value="Glass roof">
  <option value="Sports exhaust">
</datalist>



<div class="container">
  <div class="row">
    <div class="col" style="text-align: center;">
      <b>Edit Model Features</b>
    </div>
  </div>

  <div class="row">
    <div class="col">
      VW Campervan
    </div>
    <div class="col">
      1971
    </div>
  </div>


  <div class="row">
    <div class="col">

      <table class="table table-striped table-bordered">
        <thead>
          <tr>
            <td></td>
            <th style="text-align: center;">Manufacturer</th>
            <th style="text-align: center;">Score</th>
            <th style="text-align: center;">Standard</th>
            <th style="text-align: center;">Optional</th>
            <th style="text-align: center;">N/A</th>
          </tr>
        </thead>

        <tbody>

          <tr>
            <td>Strengthened Windows</td>
            <td><input type="text" list="manufacturers" value="Windows Direct...

CSS

.row {
  background: #f8f9fa;
  margin-top: 20px;
}

.col {
  border: solid 1px #6c757d;
  padding: 10px;
}