也许这只是一个愚蠢的浏览器相关问题,但是......
Rmarkdown
我通过使用包在 HTML 文件中生成了一些彩色表格tableHTML
(颜色由RColorBrewer
包生成):
```{r Init, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
require(magrittr, quietly = TRUE)
require(tableHTML)
test <- data.frame(A=123, B=456, C=789)
```
...
```{r Test, echo=FALSE, results="asis"}
tableHTML(test) %>%
add_css_thead(css = list('background-color', '#4DAF4A')) %>%
add_css_table(css = list('border', '#4DAF4A'))
```
边框的颜色在“Rstudio”查看器中看起来不错:
但在 Safari 或 Firefox 中打开时,边框颜色不同:
表格边框颜色有什么问题?