Bootstrap Row Shortcode

Rows are used to wrap columns.

Usage

1{{% bs/row %}}
2COLUMNS
3{{% /bs/row %}}

Parameters

cols

PositionNameTypeDefaultRequired
#0colsstring--

The columns settings, multiple columns separated by a space.

cols options

[size], [breakpoint]:[size]

class

PositionNameTypeDefaultRequired
#1classstring--

Used to add extra CSS classes.

Examples

The following example shows 1, 2, 3 columns per row on small, medium, and large (or above) screen respectively.

Col
Col
Col
Col
Col
Col
1{{% bs/row "1 md:2 lg:3" %}}
2COLUMNS
3{{% /bs/row %}}