From 7cd9667c6138212ff772cc61220badc71f4a486f Mon Sep 17 00:00:00 2001 From: Kamil <36131637+wlodi54@users.noreply.github.com> Date: Sun, 18 Nov 2018 02:55:05 +0100 Subject: [PATCH] Add table head description (#21974) --- guide/english/bootstrap/tables/index.md | 27 +++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/guide/english/bootstrap/tables/index.md b/guide/english/bootstrap/tables/index.md index 0b719371a1..842a9fa663 100644 --- a/guide/english/bootstrap/tables/index.md +++ b/guide/english/bootstrap/tables/index.md @@ -16,6 +16,33 @@ In order to achieve the basic styling example add the base class `.table` to any ![Basic Table](https://github.com/TroyB12/Pictures/blob/master/Basic%20Table.PNG) --- + +#### Table Head + +You can define separate header section in your table structure. +This is example +```html + + + + + + + + + + + + + + + + + +
#FirstLastHandle
1BobRobo@bro
+``` + + #### Table Striped In order to achieve the striped row effect (zebra-striping) in tables use `.table-striped` in addition to `.table` on any `` element. Striped tables are styled via the `:nth-child` CSS selector, which is not available in Internet Explorer 8.