JSFiddle - React, Tailwind, and code Playground
HTML
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="//cdn.datatables.net/1.10.4/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.rawgit.com/DataTables/Responsive/master/js/dataTables.responsive.js"></script>
<script src="//cdn.datatables.net/plug-ins/3cfcc339e89/integration/bootstrap/3/dataTables.bootstrap.js"></script>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="//cdn.datatables.net/plug-ins/3cfcc339e89/integration/bootstrap/3/dataTables.bootstrap.css">
<link rel="stylesheet" href="https://cdn.rawgit.com/DataTables/Responsive/master/css/dataTables.responsive.css">
<div class="row">
<div class="col-md-12 column">
<table id="example" class="table table-striped table-hover dt-responsive" cellspacing="0" width="100%">
<thead>
<tr>
<th>First name</th>
<th>Last name</th>
<th>Position Occupied in the Company</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Current Net Salary</th>
<th>Extention Number</th>
<th>E-mail Address</th>
</tr>
</thead>
<tbody>
<tr>
<td>Quinn</td>
<td>FlynnSsfsdfsdfsdfs dsfb fjkbdsk sd fj sdfkjsdbfksdb s sfkbsdfkjfkjsdb jsdfdfdf sdf mitJones</td>
<td>Support Lead Engineer Architecture</td>
<td>Edinburgh</td>
<td>22</td>
<td>2013/03/03</td>
<td>$342,000</td>
<td>9497</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Quinn</td>
<td>Flynn</td>
<td>Support Lead</td>
...
CSS
body { font-size: 140% }
table.dataTable th,
table.dataTable td {
white-space: nowrap;
}
.column{
border:1px solid #CCC;
}
JavaScript
$(document).ready(function() {
$('#example').DataTable();
} );