Highly customizable and resizable container content holder
Arguments
- ...
content of container
- bg.color
content background color e.g red, black or #333333
- border.color
border color of container e.g. red or #f5f5f5
Examples for r2resize
More examples and demo pages are located at this link - https://rpkg.net/package/r2resize.
Examples
if (FALSE) {
#simple sizeable card attribute
r2resize::sizeableCard(
"sample rpkg.net text"
)
#specify the background color for the card
r2resize::sizeableCard(
"sample r2resume text",
bg.color = "lightgray"
)
#specify the border color additionally
r2resize::sizeableCard(
"sample r2resume text",
bg.color = "lightgray",
border.color="black"
)
}