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.