我在code
中使用Datatable
,如下所示。我想知道,如果有任何方法可以在shiny App
的单个列中应用特定CSS styling
,例如我希望第1列为粗体并具有特定字体。
任何指针都会受到高度赞赏。谢谢,
Datatable
答案 0 :(得分:2)
一种可能性是:
ui = fluidPage(
tags$head(tags$style(HTML("
.dt-center {
font-weight: bold;
}
"))),
DT::dataTableOutput("mytable1", height = '400px')
)