【发布时间】:2017-04-25 06:20:48
【问题描述】:
谁能帮助使用 CSS 为 tabsetPanel 中的选项卡设置顶部/底部边距?
这是一个示例代码
library(shiny)
shinyApp(
ui=shinyUI(
fixedPage(
tabsetPanel(
tabPanel("Data Input",
fixedRow(
column(12,
h6("test"))
)
)
)
)
)
,
server=shinyServer(function(input, output) {
})
)
【问题讨论】: