gpt4 book ai didi

html - Shiny - 绘制列的右边框

转载 作者:行者123 更新时间:2023-12-03 16:56:17 25 4
gpt4 key购买 nike

假设我有以下 Shiny ui 代码:

fluidRow(
column(
width=4
),

column(
width=8
)
)

如何绘制第一列的右边框?

最佳答案

您可以使用 style 向列添加 CSS争论。因此,一种方法是:

library(shiny)

ui <- fluidPage(
fluidRow(
column(style='border-right: 1px solid red',
width=4,
p('Hello')
),

column(
width=8,
p('World')
)
)
)

server <- function(input,output) {}

shinyApp(ui,server)

希望这可以帮助!

关于html - Shiny - 绘制列的右边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49098544/

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