如何在html表中更改仅使用边框的颜色?

时间:2017-08-28 19:23:47

标签: html css r r-markdown stargazer

我在我的Rmd演示中有这个表:

enter image description here

是通过stargazer(fit, type = "html")

获得的

我试图在我的Rmd中包含css,如:

table, th, td {border: 1px solid white;}

结果是:

enter image description here

我想重新着色实际使用过的边框。像这样(photoshop编辑):

enter image description here

我的想法是使用css这样做,因为我有超过40个表。我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

所以你只是想改变颜色? 尝试使用border-color属性,否则添加大小和类型将创建一个新边框。例如,

table, th, td {
  border-color: white;
}