我将通过以下链接解释该示例。 https://shiny.rstudio.com/gallery/tabsets.html
我想在每个标签上添加不同的颜色。
ex)情节(背景:红色),摘要(背景:橙色),表格(背景:绿色)。
我想给每个标签tag: class or id
并在相应的tag: class or id
中添加颜色。但我不知道该怎么做。
这就是我尝试过的例子。
mainPanel(
tags$head(
tags$style(HTML("
.one {background-color: red;}
")),
tags$style(HTML("
.two {background-color: orange;}
")),
tags$style(HTML("
.three {background-color: green;}
")),
),
tabsetPanel(
tabPanel("plot", class = "one",
tags$div(
some code..
)
),
tabPanel("summary", class = "one",
tags$div(
some code..
)
),
tabPanel("table", class = "one",
tags$div(
some code..
)
)
)
)
但它没有奏效。任何人都可以帮忙吗?