float | R Documentation |
The float()
function places an element to the left or right side of its
parent element. Other text and inline elements wrap around floated elements.
Note, float()
has no effect on flex items.
float(x, ...)
x |
A tag element or .style pronoun. |
... |
One of the following,
|
An object of the same type as x
.
library(htmltools)
div(
div(
.style %>%
border_color("danger") %>%
float("left"),
"6.5/10"
),
div(
"Considering the need for opening sentences.",
"We may want to reconsider the necessity of second or third sentences.",
"The whole problem may be avoided by never creating a problem."
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.