Full Table
The first way to make a table responsive, is to wrap it with <div class="table-responsive"></div>. This way the table will be horizontally scrollable and all data will be accessible on smaller screens (< 768px).
| Name | Access | Actions | ||
|---|---|---|---|---|
|
|
Linda Moore | client1@example.com | Disabled |
|
|
|
Amanda Powell | client2@example.com | Business |
|
|
|
Lisa Gordon | client3@example.com | Business |
|
|
|
Ashley Welch | client4@example.com | Business |
|
|
|
Rebecca Reid | client5@example.com | Trial |
|
Partial Table
The second way is to use specific CSS classes for hiding columns in various screen resolutions. This way you can hide the less important columns and keep the most valuable on mobiles. At the following example the Access column isn't visible on small and extra small screens and Email column isn't visible on extra small screens.
| Name | Actions | ||
|---|---|---|---|
|
|
Donald Barnes | client1@example.com |
|
|
|
Adam Hall | client2@example.com |
|
|
|
Craig Stone | client3@example.com |
|
|
|
Scott Ruiz | client4@example.com |
|
|
|
Eric Lawson | client5@example.com |
|
Helper Classes
|
Extra small devices Phones (<768px) |
Small devices Tablets (≥768px) |
Medium devices Desktops (≥992px) |
Large devices Desktops (≥1200px) |
|
|---|---|---|---|---|
.visible-xs |
||||
.visible-sm |
||||
.visible-md |
||||
.visible-lg |
||||
.hidden-xs |
||||
.hidden-sm |
||||
.hidden-md |
||||
.hidden-lg |