Bulma Column Options

bulma_column_options(size = NULL, width = NULL, offset = NULL,
  narrow = NULL, class = NULL, style = NULL)

Arguments

size

One of "full", "four-fifths", "three-quarters", "two-thirds", "three-fifths", "half", "two-fifths", "one-third", "one-quarter", "one-fifth"

width

Column width in terms of the 12 grid units, i.e. 1-12.

offset

Column offset, one of size or width

narrow

Use bulma_column_narrow() to construct options

class

Extra classes that should be applied to the columns container.

style

CSS styles applied to the columns container.

Examples

bulma_column_options(size = "half", offset = "one-quarter")
#> $size #> [1] "half" #> #> $width #> NULL #> #> $offset #> [1] "one-quarter" #> #> $narrow #> NULL #> #> $class #> NULL #> #> $style #> NULL #> #> attr(,"class") #> [1] "bulma_column_options"