pixiedust (version 0.8.5)

sprinkle_border_collapse: Change the Border Collapse Property in a Dust Table

Description

The border_collapse property controls the appearance of cell borders in HTML tables. Be default, pixiedust collapses the borders so that the adjoining border of two cells appear as a single border.

Usage

sprinkle_border_collapse(x,
  border_collapse = getOption("pixie_border_collapse", "collapse"), ...)

# S3 method for default sprinkle_border_collapse(x, border_collapse = getOption("pixie_border_collapse", "collapse"), ...)

# S3 method for dust_list sprinkle_border_collapse(x, border_collapse = getOption("pixie_border_collapse", "collapse"), ...)

Arguments

x

An object of class dust

border_collapse

character(1). Defaults to "collapse", and may accept any of "collapse", "separate", "initial", or "inherit".

...

Additional arguments to pass to other methods. Currently ignored.

Functional Requirements

  1. Change the border_collapse attribute of the dust object.

  2. Cast an error if x is not a dust object.

  3. Cast an error if border_collapse is not one of "collapse", "separate", "initial", "inherit".

Details

See https://www.w3schools.com/cssref/pr_border-collapse.asp for details on how each option affects the appearance of a table.

This property has no effect on non-HTML output.

See Also

dust, sprinkle