在闪亮的tabsetPanel中设置选项卡的顶部/底部边距

时间:2017-04-25 06:20:48

标签: css r shiny

任何人都可以使用CSS为tabsetPanel中的选项卡设置顶部/底部边距吗?

这是一个示例代码

library(shiny)
shinyApp(
 ui=shinyUI(
    fixedPage(
        tabsetPanel(
            tabPanel("Data Input",
                    fixedRow(
                        column(12,
                               h6("test"))
                    )
            )
        )
    )
)
,

server=shinyServer(function(input, output) {

 })

enter image description here

1 个答案:

答案 0 :(得分:2)

也许是这样的。有关详细信息,请参阅:Background color of tabs in shiny tabPanel

library(shiny)
shinyApp(
ui=shinyUI(
fixedPage(
  tabsetPanel(
    tabPanel("Data Input",
             tags$style(HTML("
              .tabbable > .nav > li > a {margin-top:50px;}")),
             fixedRow(
               column(12,
                      h6("test"))
             )
    )
  )
)
)
,

server=shinyServer(function(input, output) {

})
)