Skip to content

Instantly share code, notes, and snippets.

@mrjasonweaver
Last active October 26, 2015 16:37
Show Gist options
  • Save mrjasonweaver/c1939f67c0a4d094d141 to your computer and use it in GitHub Desktop.
Save mrjasonweaver/c1939f67c0a4d094d141 to your computer and use it in GitHub Desktop.
.table-wrap {
width: 100%;
overflow-x: scroll;
margin-bottom: 50px;
}
table {
min-width: 600px;
border-spacing: 0;
border-collapse: collapse;
}
var App = {};
// responsive scrolling tables
App.responsiveTables = function() {
$( "table" ).wrap( "<div class='table-wrap'></div>");
};
$(document).ready(function() {
App.responsiveTables();
});
<table>
<thead>
<tr>
<th>Table header</th>
<th>Table header</th>
<th>Table header</th>
<th>Table header</th>
<th>Table header</th>
<th>Table header</th>
</tr>
</thead>
<tbody>
<tr>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
</tr>
<tr>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
</tr>
<tr>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment