For basic styling—light padding and only horizontal dividers—add the base class Use Striped tables are styled via the Add Add Add Use contextual classes to color table rows or individual cells. Using color to add meaning to a table row or individual cell only provides a visual indication, which will not be conveyed to users of assistive technologies – such as screen readers. Ensure that information denoted by the color is either obvious from the content itself (the visible text in the relevant table row/cell), or is included through alternative means, such as additional text hidden with the Create responsive tables by wrapping any Responsive tables make use of Firefox has some awkward fieldset styling involving For more information, read this Stack Overflow answer..table
to any . It may seem super redundant, but given the widespread use of tables for other plugins like calendars and date pickers, we've opted to isolate our custom table styles.
#
First Name
Last Name
Username
1
Mark
Otto
@mdo
2
Jacob
Thornton
@fat
3
Larry
the Bird
@twitter
class="table">
...
Striped rows
.table-striped
to add zebra-striping to any table row within the .
Cross-browser compatibility
:nth-child
CSS selector, which is not available in Internet Explorer 8.
#
First Name
Last Name
Username
1
Mark
Otto
@mdo
2
Jacob
Thornton
@fat
3
Larry
the Bird
@twitter
class="table table-striped">
...
Bordered table
.table-bordered
for borders on all sides of the table and cells.
#
First Name
Last Name
Username
1
Mark
Otto
@mdo
2
Jacob
Thornton
@fat
3
Larry
the Bird
@twitter
class="table table-bordered">
...
Hover rows
.table-hover
to enable a hover state on table rows within a .
#
First Name
Last Name
Username
1
Mark
Otto
@mdo
2
Jacob
Thornton
@fat
3
Larry
the Bird
@twitter
class="table table-hover">
...
Condensed table
.table-condensed
to make tables more compact by cutting cell padding in half.
#
First Name
Last Name
Username
1
Mark
Otto
@mdo
2
Jacob
Thornton
@fat
3
Larry the Bird
@twitter
class="table table-condensed">
...
Contextual classes
Class
Description
.active
Applies the hover color to a particular row or cell
.success
Indicates a successful or positive action
.info
Indicates a neutral informative change or action
.warning
Indicates a warning that might need attention
.danger
Indicates a dangerous or potentially negative action
#
Column heading
Column heading
Column heading
1
Column content
Column content
Column content
2
Column content
Column content
Column content
3
Column content
Column content
Column content
4
Column content
Column content
Column content
5
Column content
Column content
Column content
6
Column content
Column content
Column content
7
Column content
Column content
Column content
8
Column content
Column content
Column content
9
Column content
Column content
Column content
class="active">...
class="success">...
class="warning">...
class="danger">...
class="info">...
class="active">...
class="success">...
class="warning">...
class="danger">...
class="info">...
Conveying meaning to assistive technologies
.sr-only
class.Responsive tables
.table
in .table-responsive
to make them scroll horizontally on small devices (under 768px). When viewing on anything larger than 768px wide, you will not see any difference in these tables.Vertical clipping/truncation
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.Firefox and fieldsets
width
that interferes with the responsive table. This cannot be overriden without a Firefox-specific hack that we don't provide in Bootstrap:@-moz-document url-prefix() {
fieldset { display: table-cell; }
}
#
Table heading
Table heading
Table heading
Table heading
Table heading
Table heading
1
Table cell
Table cell
Table cell
Table cell
Table cell
Table cell
2
Table cell
Table cell
Table cell
Table cell
Table cell
Table cell
3
Table cell
Table cell
Table cell
Table cell
Table cell
Table cell
#
Table heading
Table heading
Table heading
Table heading
Table heading
Table heading
1
Table cell
Table cell
Table cell
Table cell
Table cell
Table cell
2
Table cell
Table cell
Table cell
Table cell
Table cell
Table cell
3
Table cell
Table cell
Table cell
Table cell
Table cell
Table cell
class="table">
...