Table of Contents
Add container (different max-width for various screen size) #
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
[container] [row] [column md="6"] ... [/column] [column md="6"] ... [/column] [/row [/container] |
Double click on code to see raw and then copy
Add container-fluid (100% width container) #
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
[container-fluid] [container] [row] [column md="6"] ... [/column] [column md="6"] ... [/column] [/row] [/container] [/container-fluid] |
Double click on code to see raw and then copy
Parameters ( [container] ) #
Parameter | Description | Required | Values | Default |
---|---|---|---|---|
fluid | Is the container fluid? (see Bootstrap documentation for details) | optional | true, false | false |
xclass | Any extra classes you want to add | optional | any text | none |
data | Data attribute and value pairs separated by a comma. | optional | any text | none |
Parameters ( [container-fluid] ) #
Parameter | Description | Required | Values | Default |
---|---|---|---|---|
xclass | Any extra classes you want to add | optional | any text | none |
data | Data attribute and value pairs separated by a comma. Pairs separated by pipe. | optional | any text | none |
Container and Row example with parameteres : #
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
[container fluid="true"] [row xclass="flexia-container" data="some-data"] [column md="6"] ... [/column] [column md="6"] ... [/column] [/row] [/container] |
Double click on code to see raw and then copy