我有一张html表格,里面有一堆工具。我想尽可能多地扩展这个表,使其适合这些列。我的输出和代码如下。正如你所看到的,桌子之间有一小块空白处。我想使用这样的空间。
d %>%
kable( align = c( 'l', rep( 'c', 23 )), escape = F, full_width = F ) %>%
kable_styling(bootstrap_options = c("striped", 'condensed' ), font_size = 10 )
发布于 2019-10-29 12:06:20
尝试将full_width
选项设置为full_width = T
https://stackoverflow.com/questions/58601036
复制相似问题