border_all | R Documentation |
The border_all()
and border_<side>()
functions adjust a tag element's
borders.
border_all(x, include = TRUE)
border_top(x, include = TRUE)
border_right(x, include = TRUE)
border_bottom(x, include = TRUE)
border_left(x, include = TRUE)
x |
A tag element or .style pronoun. |
include |
A boolean specifying to include a side. One of,
|
An object of the same type as x
.
library(htmltools)
h3(
.style %>%
border_bottom() %>%
border_color(theme_warning()) %>%
text_color(theme_warning()),
"Warning"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.