Bootstrap Table

by wenyi

HTML

<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/bootstrap-table.min.css">
<script src="https://unpkg.com/[email protected]/dist/bootstrap-table.min.js"></script>

<div class="row">
    
  <div class="col-md-2">
    <table data-toggle="table">
       <thead>
          
        <tr>
          <th 
            colspan="2"
            class="text-center">Basic Info</th>
        </tr>
      </thead>
      

      
      <tr>
         <td bgcolor="#90EE90">This</td>
         <td>That</td>
      </tr>
    
      
    </table>
  </div>
  
  
  
  <div class="col-md-3">
    <table
      data-toggle="table">
      <thead>
        <tr>
          <th>Bookmark 2</th>
        </tr>
      </thead>
      <tr>
         <td bgcolor="#90EE90">This</td>
      </tr>
    </table>
  </div>
  <div class="col-md-3">
    <table
      data-toggle="table"
      >
      <thead>
        <tr>
          <th>Bookmark 3</th>
        </tr>
      </thead>
    </table>
  </div>
  <div class="col-md-3">
    <table
      data-toggle="table">
      <thead>
        <tr>
          <th>Bookmark 4</th>
        </tr>
      </thead>
    </table>
  </div>
</div>