您好,我正在使用Flexdashboard构建仪表板,并包括闪亮的功能。我在“日期范围”中包含了一个边栏,我试图更改Font_Style以使其以粗体显示。我尝试了以下方法,但没有任何效果:
br()
tags$style("label {font-style: bold;}")
dateRangeInput("dates", label = h6("DATE RANGE"))
hr()
答案 0 :(得分:0)
尝试tags$style(".input-group-addon {font-weight: bold;}")
。请注意,该类为input-group-addon
,而改用font-weight: bold
..
library(shiny)
ui <- fluidPage(
tags$style(".input-group-addon {font-weight: bold;}"),
dateRangeInput(inputId = "a", label = "", start = Sys.Date(), end = Sys.Date())
)
server <- function(input, output, session) {
}
shinyApp(ui, server)