data_frame_to_css_grid_template_areas | R Documentation |
Generate CSS string representing grid template areas.
data_frame_to_css_grid_template_areas(areas_dataframe)
areas_dataframe |
data.frame of character representing grid areas |
This is a helper function used in grid_template()
areas_dataframe <- rbind( c("header", "header", "header"), c("menu", "main", "right1"), c("menu", "main", "right2") ) result == "'header header header' 'menu main right1' 'menu main right2'"
character
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.