blob: 5c50e697bacfc3d7915007088496efdc6fdd2ce1 [file] [log] [blame]
Hao Zhu94956582017-02-21 18:18:29 -05001## ------------------------------------------------------------------------
2library(knitr)
3library(kableExtra)
4dt <- mtcars[1:5, 1:2]
5
6kable(dt, format = "html")
7
8## ------------------------------------------------------------------------
9kable(dt, format = "html", table.attr = htmlTable_styling())
10
11## ------------------------------------------------------------------------
12kable(dt, format = "html", table.attr = htmlTable_styling(bootstrap_options = "striped"))
13
14## ------------------------------------------------------------------------
15kable(dt, format = "html", table.attr = htmlTable_styling(c("striped", "hover")))
16
17## ------------------------------------------------------------------------
18kable(dt, format = "html",
19 table.attr = htmlTable_styling(c("striped", "bordered", "hover", "condensed", "responsive")))
20
21## ------------------------------------------------------------------------
22kable(dt, format = "html",
23 table.attr = htmlTable_styling(
24 c("striped", "bordered", "condensed"),
25 full_width = F,
26 float = "center"
27 ))
28