You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`striped`| Boolean | Add zebra-striping to the table rows within the `<tbody>`|
333
-
|`bordered`| Boolean | For borders on all sides of the table and cells. |
334
-
|`borderless`| Boolean | removes inner borders from table. |
335
-
|`outlined`| Boolean | For a thin border on all sides of the table. Has no effect if `bordered` is set. |
336
-
|`small`| Boolean | To make tables more compact by cutting cell padding in half. |
337
-
|`hover`| Boolean | To enable a hover highlighting state on table rows within a `<tbody>`|
338
-
|`dark`| Boolean | Invert the colors — with light text on dark backgrounds (equivalent to Bootstrap v4 class `.table-dark`) |
339
-
|`fixed`| Boolean | Generate a table with equal fixed-width columns (`table-layout: fixed;`) |
340
-
|`responsive`| Boolean or String | Generate a responsive table to make it scroll horizontally. Set to `true` for an always responsive table, or set it to one of the breakpoints `'sm'`, `'md'`, `'lg'`, or `'xl'` to make the table responsive (horizontally scroll) only on screens smaller than the breakpoint. See [Responsive tables](#responsive-tables) below for details. |
341
-
|`sticky-header`| Boolean or String | Generates a vertically scrollable table with sticky headers. Set to `true` to enable sticky headers (default table max-height of `300px`), or set it to a string containing a height (with CSS units) to specify a maximum height other than `300px`. See the [Sticky header](#sticky-headers) section below for details. |
342
-
|`stacked`| Boolean or String | Generate a responsive stacked table. Set to `true` for an always stacked table, or set it to one of the breakpoints `'sm'`, `'md'`, `'lg'`, or `'xl'` to make the table visually stacked only on screens smaller than the breakpoint. See [Stacked tables](#stacked-tables) below for details. |
343
-
|`caption-top`| Boolean | If the table has a caption, and this prop is set to `true`, the caption will be visually placed above the table. If `false` (the default), the caption will be visually placed below the table. |
344
-
|`table-variant`| String | Give the table an overall theme color variant. |
345
-
|`head-variant`| String | Use `'light'` or `'dark'` to make table header appear light or dark gray, respectively |
346
-
|`foot-variant`| String | Use `'light'` or `'dark'` to make table footer appear light or dark gray, respectively. If not set, `head-variant` will be used. Has no effect if `foot-clone` is not set |
347
-
|`foot-clone`| Boolean | Turns on the table footer, and defaults with the same contents a the table header |
348
-
|`no-footer-sorting`| Boolean | When `foot-clone` is true and the table is sortable, disables the sorting icons and click behaviour on the footer heading cells. Refer to the [Sorting](#sorting) section below for more details. |
349
-
350
-
**Note:** table style options `fixed`, `stacked`, and `caption-top`, and the table sorting feature,
|`striped`| Boolean | Add zebra-striping to the table rows within the `<tbody>`|
333
+
|`bordered`| Boolean | For borders on all sides of the table and cells. |
334
+
|`borderless`| Boolean | removes inner borders from table. |
335
+
|`outlined`| Boolean | For a thin border on all sides of the table. Has no effect if `bordered` is set. |
336
+
|`small`| Boolean | To make tables more compact by cutting cell padding in half. |
337
+
|`hover`| Boolean | To enable a hover highlighting state on table rows within a `<tbody>`|
338
+
|`dark`| Boolean | Invert the colors — with light text on dark backgrounds (equivalent to Bootstrap v4 class `.table-dark`) |
339
+
|`fixed`| Boolean | Generate a table with equal fixed-width columns (`table-layout: fixed;`) |
340
+
|`responsive`| Boolean or String | Generate a responsive table to make it scroll horizontally. Set to `true` for an always responsive table, or set it to one of the breakpoints `'sm'`, `'md'`, `'lg'`, or `'xl'` to make the table responsive (horizontally scroll) only on screens smaller than the breakpoint. See [Responsive tables](#responsive-tables) below for details. |
341
+
|`sticky-header`| Boolean or String | Generates a vertically scrollable table with sticky headers. Set to `true` to enable sticky headers (default table max-height of `300px`), or set it to a string containing a height (with CSS units) to specify a maximum height other than `300px`. See the [Sticky header](#sticky-headers) section below for details. |
342
+
|`stacked`| Boolean or String | Generate a responsive stacked table. Set to `true` for an always stacked table, or set it to one of the breakpoints `'sm'`, `'md'`, `'lg'`, or `'xl'` to make the table visually stacked only on screens smaller than the breakpoint. See [Stacked tables](#stacked-tables) below for details. |
343
+
|`caption-top`| Boolean | If the table has a caption, and this prop is set to `true`, the caption will be visually placed above the table. If `false` (the default), the caption will be visually placed below the table. |
344
+
|`table-variant`| String | Give the table an overall theme color variant. |
345
+
|`head-variant`| String | Use `'light'` or `'dark'` to make table header appear light or dark gray, respectively |
346
+
|`foot-variant`| String | Use `'light'` or `'dark'` to make table footer appear light or dark gray, respectively. If not set, `head-variant` will be used. Has no effect if `foot-clone` is not set |
347
+
|`foot-clone`| Boolean | Turns on the table footer, and defaults with the same contents a the table header |
348
+
|`no-footer-sorting`| Boolean | When `foot-clone` is true and the table is sortable, disables the sorting icons and click behaviour on the footer heading cells. Refer to the [Sorting](#sorting) section below for more details. |
349
+
|`no-border-collapse`| Boolean | Disables the default of collapsing of the table borders. Mainly for use with [sticky headers](#sticky-headers) and/or [sticky columns](#sticky-columns). Will cause the appearance of double borders in some situations. |
0 commit comments