20 KiB
layout | title | description | group | toc |
---|---|---|---|---|
docs | Tables | Documentation and examples for opt-in styling of tables (given their prevalent use in JavaScript plugins) with Bootstrap. | content | true |
Overview
Due to the widespread use of <table>
elements across third-party widgets like calendars and date pickers, Bootstrap's tables are opt-in. Add the base class .table
to any <table>
, then extend with our optional modifier classes or custom styles. All table styles are not inherited in Bootstrap, meaning any nested tables can be styled independent from the parent.
Using the most basic table markup, here's how .table
-based tables look in Bootstrap.
{{< table class="table" simplified="false" >}}
Variants
Use contextual classes to color tables, table rows or individual cells.
Class | Heading | Heading |
---|---|---|
Default | Cell | Cell |
{{ .name | title }} | Cell | Cell |
{{< highlight html >}}
{{< table.inline >}}{{- range (index $.Site.Data "theme-colors") }}
...{{- range (index $.Site.Data "theme-colors") }}
... {{- end -}} {{< /table.inline >}} {{< table.inline >}} {{- range (index $.Site.Data "theme-colors") }} ... {{- end -}} {{< /table.inline >}} {{< /highlight >}}{{< callout info >}} {{< partial "callout-warning-color-assistive-technologies.md" >}} {{< /callout >}}
Accented tables
Striped rows
Use .table-striped
to add zebra-striping to any table row within the <tbody>
.
{{< table class="table table-striped" >}}
These classes can also be added to table variants:
{{< table class="table table-dark table-striped" >}}
{{< table class="table table-success table-striped" >}}
Hoverable rows
Add .table-hover
to enable a hover state on table rows within a <tbody>
.
{{< table class="table table-hover" >}}
{{< table class="table table-dark table-hover" >}}
These hoverable rows can also be combined with the striped variant:
{{< table class="table table-striped table-hover" >}}
Active tables
Highlight a table row or cell by adding a .table-active
class.
# | First | Last | Handle |
---|---|---|---|
1 | Mark | Otto | @mdo |
2 | Jacob | Thornton | @fat |
3 | Larry the Bird |
{{< highlight html >}}
... ... ...3 | Larry the Bird |
---|
# | First | Last | Handle |
---|---|---|---|
1 | Mark | Otto | @mdo |
2 | Jacob | Thornton | @fat |
3 | Larry the Bird |
{{< highlight html >}}
... ... ...3 | Larry the Bird |
---|
How do the variants and accented tables work?
For the accented tables (striped rows, hoverable rows, and active tables), we used some techniques to make these effects work for all our table variants:
- We start by setting the background of a table cell with the
--bs-table-bg
custom property. All table variants then set that custom property to colorize the table cells. This way, we don't get into trouble if semi-transparent colors are used as table backgrounds. - Then we add a gradient on the table cells with
background-image: linear-gradient(var(--bs-table-accent-bg), var(--bs-table-accent-bg));
to layer on top of any specifiedbackground-color
. Since--bs-table-accent-bg
is transparent by default, we have an invisible transparent linear gradient by default. - When either
.table-striped
,.table-hover
or.table-active
classes are added, the--bs-table-accent-bg
is set to a semitransparent color to colorize the background. - For each table variant, we generate a
--bs-table-accent-bg
color with the highest contrast depending on that color. For example, the accent color for.table-primary
is darker while.table-dark
has a lighter accent color. - Text and border colors are generated the same way, and their colors are inherited by default.
Behind the scenes it looks like this:
{{< scss-docs name="table-variant" file="scss/mixins/_table-variants.scss" >}}
Table borders
Bordered tables
Add .table-bordered
for borders on all sides of the table and cells.
{{< table class="table table-bordered" >}}
[Border color utilities]({{< docsref "/utilities/borders#border-color" >}}) can be added to change colors:
{{< table class="table table-bordered border-primary" >}}
Tables without borders
Add .table-borderless
for a table without borders.
{{< table class="table table-borderless" >}}
{{< table class="table table-dark table-borderless" >}}
Small tables
Add .table-sm
to make any .table
more compact by cutting all cell padding
in half.
{{< table class="table table-sm" >}}
{{< table class="table table-dark table-sm" >}}
Vertical alignment
Table cells of <thead>
are always vertical aligned to the bottom. Table cells in <tbody>
inherit their alignment from <table>
and are aligned to the the top by default. Use the [vertical align]({{< docsref "/utilities/vertical-align" >}}) classes to re-align where needed.
Heading 1 | Heading 2 | Heading 3 | Heading 4 |
---|---|---|---|
This cell inherits vertical-align: middle; from the table |
This cell inherits vertical-align: middle; from the table |
This cell inherits vertical-align: middle; from the table |
Nulla vitae elit libero, a pharetra augue. Cras mattis consectetur purus sit amet fermentum. Vestibulum id ligula porta felis euismod semper. |
This cell inherits vertical-align: bottom; from the table row |
This cell inherits vertical-align: bottom; from the table row |
This cell inherits vertical-align: bottom; from the table row |
Nulla vitae elit libero, a pharetra augue. Cras mattis consectetur purus sit amet fermentum. Vestibulum id ligula porta felis euismod semper. |
This cell inherits vertical-align: middle; from the table |
This cell inherits vertical-align: middle; from the table |
This cell is aligned to the top. | Nulla vitae elit libero, a pharetra augue. Cras mattis consectetur purus sit amet fermentum. Vestibulum id ligula porta felis euismod semper. |
{{< highlight html >}}
... | ... | This cell is aligned to the top. | ... |
Nesting
Border styles, active styles, and table variants are not inherited by nested tables.
# | First | Last | Handle | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | Mark | Otto | @mdo | ||||||||||||
|
|||||||||||||||
3 | Larry | the Bird |
{{< highlight html >}}
... ... ...
...
|
How nesting works
To prevent any styles from leaking to nested tables, we use the child combinator (>
) selector in our CSS. Since we need to target all the td
s and th
s in the thead
, tbody
, and tfoot
, our selector would look pretty long without it. As such, we use the rather odd looking .table > :not(caption) > * > *
selector to target all td
s and th
s of the .table
, but none of any potential nested tables.
Note that if you add <tr>
s as direct children of a table, those <tr>
will be wrapped in a <tbody>
by default, thus making our selectors work as intended.
Anatomy
Table head
Similar to tables and dark tables, use the modifier classes .table-light
or .table-dark
to make <thead>
s appear light or dark gray.
# | First | Last | Handle |
---|---|---|---|
1 | Mark | Otto | @mdo |
2 | Jacob | Thornton | @fat |
3 | Larry | the Bird |
{{< highlight html >}}
... ...# | First | Last | Handle |
---|---|---|---|
1 | Mark | Otto | @mdo |
2 | Jacob | Thornton | @fat |
3 | Larry | the Bird |
{{< highlight html >}}
... ...Table foot
# | First | Last | Handle |
---|---|---|---|
1 | Mark | Otto | @mdo |
2 | Jacob | Thornton | @fat |
3 | Larry | the Bird | |
Footer | Footer | Footer | Footer |
{{< highlight html >}}
... ... ...Captions
A <caption>
functions like a heading for a table. It helps users with screen readers to find a table and understand what it's about and decide if they want to read it.
{{< highlight html >}}
... ...You can also put the <caption>
on the top of the table with .caption-top
.
{{< example >}}
# | First | Last | Handle |
---|---|---|---|
1 | Mark | Otto | @mdo |
2 | Jacob | Thornton | @fat |
3 | Larry | the Bird |
Responsive tables
Responsive tables allow tables to be scrolled horizontally with ease. Make any table responsive across all viewports by wrapping a .table
with .table-responsive
. Or, pick a maximum breakpoint with which to have a responsive table up to by using .table-responsive{-sm|-md|-lg|-xl|-xxl}
.
{{< callout warning >}}
Vertical clipping/truncation
Responsive tables make use of overflow-y: hidden
, which clips off any content that goes beyond the bottom or top edges of the table. In particular, this can clip off dropdown menus and other third-party widgets.
{{< /callout >}}
Always responsive
Across every breakpoint, use .table-responsive
for horizontally scrolling tables.
# | Heading | Heading | Heading | Heading | Heading | Heading | Heading | Heading | Heading |
---|---|---|---|---|---|---|---|---|---|
1 | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell |
2 | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell |
3 | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell |
{{< highlight html >}}
Breakpoint specific
Use .table-responsive{-sm|-md|-lg|-xl|-xxl}
as needed to create responsive tables up to a particular breakpoint. From that breakpoint and up, the table will behave normally and not scroll horizontally.
These tables may appear broken until their responsive styles apply at specific viewport widths.
{{< tables.inline >}} {{ range $.Site.Data.breakpoints }} {{ if not (eq . "xs") }}
# | Heading | Heading | Heading | Heading | Heading | Heading | Heading | Heading |
---|---|---|---|---|---|---|---|---|
1 | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell |
2 | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell |
3 | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell |
{{< highlight html >}} {{< tables.inline >}} {{- range $.Site.Data.breakpoints -}} {{- if not (eq . "xs") }}
Customizing in Sass
- The factor variables (
$table-striped-bg-factor
,$table-active-bg-factor
&$table-hover-bg-factor
) are used to determine the contrast in table variants. - Apart from the light & dark table variants, theme colors are lightened by the
$table-bg-level
variable.
{{< scss-docs name="table-variables" file="scss/_variables.scss" >}}