Responsive table class for responsive tables
Note: There can be as many th's as you'd like to include, they go across the top horizontally. Href tags can be included anywhere, either the th or the td spaces. To include another row of td spaces, copy and paste the tr tags on top on one another, and fill in the data accordingly. For as many th there are, there needs to be the same number of td in the tr . Please don't wrap the table with any other divs.
This code can be seen here, Examples
<table class="responsive-table">
<thead>
<tr>
<th>**TH goes here**</th>
<th>**TH goes here**</th>
</tr>
</thead>
<tbody>
<tr>
<td>**TD goes here**</td>
<td>**TD goes here**</td>
</tr>
</tbody>
</table>