Bootstrap grid functions for generating html
containerFluid : List (Html msg) -> Html msg
Generates a fluid container html element
containerFluid []
container : List (Html msg) -> Html msg
Generates a container html element
container []
row : List (Html msg) -> Html msg
Generates a row html element
containerFluid
[ row
[]
]
column : List ColumnType -> List (Html msg) -> Html msg
Generates a column html element
containerFluid
[ row
[ column [ ExtraSmall Twelve, Small Twelve, Medium Twelve, Large Twelve ]
[]
]
]
Type to be used when determining column size Note that a row can only container up to 12 column size units
Type to be used when determining column size based on screen size Extra small devices Phones (<768px) Small devices Tablets (≥768px) Medium devices Desktops (≥992px) Large devices Desktops (≥1200px)