Responsive tables
There are two types of responsive views available:
View | Responsive behaviour | Appropriate for | Breakpoint | Requires JavaScript? |
---|---|---|---|---|
Normal view | The table visual formatting and layout is preserved. The table may be scrolled horizontally in order to see all column data. The normal view uses the same HTML structure and CSS classes as Bootstrap responsive tables. |
When there are many rows and columns and the user has to compare data across multiple columns. | Can occur anytime the table is too large for the screen, using Or, can be breakpoint-specific by using |
Yes |
Stacked view | The rows are collapsed and styled as self-contained units. Inside each row, the column data is stacked. | When each table row could be viewed as a self-contained unit and the user does not need to compare data across multiple columns. | Screen sizes less than 768px. | Yes |
Demo
Resize your browser window to see the responsive styles.
Full Name | Title | Phone | Start Date | |
---|---|---|---|---|
John Roden | Web Designer | john.roden@calgary.ca | (403) 555-5678 | Jun 30, 2014 |
Seth Brown | Graphic Designer | seth.brown@calgary.ca | (403) 555-5284 | Apr 21, 2014 |
Dorie Dawson | Graphic Designer | dorie.dawson@calgary.ca | (403) 555-2956 | Mar 18, 2012 |
Jennifer Tidley | Marketing Lead | jennifer.tidley@calgary.ca | (403) 555-8893 | Jan 14, 2013 |
Sam Wilson | Electrical Inspector | sam.wilson@calgary.ca | (403) 555-4438 | Jan 14, 2005 |
Mitigating line wrapping
At smaller screen sizes, some columns may become horizontally squished forcing the text to wrap onto multiple lines. In the example table above, see the Phone and Start Date columns. Below are a few ways to mitigate the line wrapping. Mix and match the options to suit your specific scenario.
- Use the breakpoint-specific normal view. In addition to making the table responsive up to the specified breakpoint, the
<table>
will automatically be given amin-width
equal to the breakpoint. For example, when using, the.table-responsive-lg
, the min-width on the table will be 991px. The column cells have more room to grow to the width of the table and should appear less squished. - Add the utility class
text-nowrap
onto each table cell where the text should not wrap onto a new line. Note that this method would result in other columns becoming thinner. - Apply
table-layout: fixed;
to the<table>
and manually set the widths for each column by applying a width to each<th>
in the<thead>
. A percentage width is recommended.