Responsive Tables
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 | ||
|---|---|---|---|---|
|
|
Henry Harrison | customer1@example.com | Personal |
|
|
|
Wayne Garcia | customer2@example.com | Personal |
|
|
|
Brian Stevens | customer3@example.com | VIP |
|
|
|
Albert Ray | customer4@example.com | VIP |
|
|
|
Ralph Murray | customer5@example.com | VIP |
|
Partial Table
The second way is to use responsive utility CSS classes for hiding columns in various screen resolutions. This way you can hide less important columns and keep the most valuable on smaller screens. 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 | Access | Actions | ||
|---|---|---|---|---|
|
|
Ralph Murray | client1@example.com | VIP |
|
|
|
Henry Harrison | client2@example.com | VIP |
|
|
|
Albert Ray | client3@example.com | Personal |
|
|
|
Brian Cruz | client4@example.com | Personal |
|
|
|
Adam McCoy | client5@example.com | Business |
|