任何人都可以使用CSS为tabsetPanel中的选项卡设置顶部/底部边距吗?
这是一个示例代码
library(shiny)
shinyApp(
ui=shinyUI(
fixedPage(
tabsetPanel(
tabPanel("Data Input",
fixedRow(
column(12,
h6("test"))
)
)
)
)
)
,
server=shinyServer(function(input, output) {
})
)
答案 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) {
})
)