gpt4 book ai didi

css - 将选项卡放在右侧的 Shiny tabsetPanel 中

转载 作者:行者123 更新时间:2023-11-28 09:10:55 25 4
gpt4 key购买 nike

默认情况下,tabsetPanel 中的选项卡位于左侧。是否可以在右侧放置一个选项卡,同时在左侧仍有其他选项卡?所以它看起来像这样?

enter image description here

library(shiny)

ui <- fluidPage(
tabsetPanel(
tabPanel("tab_left1"),
tabPanel("tab_left2"),
tabPanel("tab_right")
)
)

server <- function(input, output, session) {}

shinyApp(ui, server)

最佳答案

使用 float-right 应该确实有效。使用 2 个 tabsetPanel 的问题是同时有 2 个事件选项卡。

library(shiny)

ui <- fluidPage(
tags$head(
tags$style(HTML(
".tabbable ul li:nth-child(3) { float: right; }"
))
),
tabsetPanel(
tabPanel("tab_left1"),
tabPanel("tab_left2"),
tabPanel("tab_right")
)
)

server <- function(input, output, session) {}

shinyApp(ui, server)

enter image description here

关于css - 将选项卡放在右侧的 Shiny tabsetPanel 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48223155/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com