gpt4 book ai didi

r - 如何使用fluidRow和mainPanel将文本居中?

转载 作者:行者123 更新时间:2023-12-04 12:44:00 26 4
gpt4 key购买 nike

我想在 fluidRow 中居中一些文本在 mainPanel .因此,我试过:

library(shiny)

ui <- fluidPage(
mainPanel(
fluidRow(
align = "center",
"How to center this?"
)
)
)

server <- function(input, output) {}

shinyApp(ui, server)

但是,文本显然偏离了中心(太靠左了)。如果我省略 mainPanel(...)有用。

最佳答案

它确实居中,mainPanel只是不采取全宽。
如果你看 ?mainPanel()width的参数默认为 8。如果您想要全宽,请将其设置为 12。

library(shiny)

ui <- fluidPage(
mainPanel(
fluidRow(
align = "center",
"How to center this?"
), width = 12
)
)

server <- function(input, output) {}

shinyApp(ui, server)

关于r - 如何使用fluidRow和mainPanel将文本居中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54406162/

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