powered by
Create a Bootstrap row div
bs_row( ..., row_cols = NULL, align_items = NULL, justify_content = NULL, horizontal_gutter = NULL, vertical_gutter = NULL, gutter = NULL, custom_class = NULL )
A string or strings of HTML content to include in the row div.
An integer, the number of columns to use for rendering content.
A string, likely one of "start", "center", or "end", that gets appended to "align-items-".
A string, such as "md-center", that gets appended to "justify-content-".
An integer, controls the horizontal gutter width, gets appended to "gx-".
An integer, controls the vertical gutter width, gets appended to "gy-".
An integer, controls the horizontal and vertical gutter width, gets appended to "g-".
A string, allows custom classes to be appended to the row class
A string of HTML.
# NOT RUN { bs_row( bs_col(p("Col 1")), bs_col(p("Col 2")) ) # }
Run the code above in your browser using DataLab