将CSS样式应用于Datatable中的特定列

时间:2018-04-25 15:23:15

标签: javascript css r shiny

我在code中使用Datatable,如下所示。我想知道,如果有任何方法可以在shiny App的单个列中应用特定CSS styling,例如我希望第1列为粗体并具有特定字体。

任何指针都会受到高度赞赏。谢谢,

Datatable

1 个答案:

答案 0 :(得分:2)

一种可能性是:

ui = fluidPage(
  tags$head(tags$style(HTML("
      .dt-center {
        font-weight: bold;
      }
    "))),
  DT::dataTableOutput("mytable1", height = '400px')
)

有关参考,请参阅https://shiny.rstudio.com/articles/css.html