library(shiny)
library(shinydashboard)

ui <- dashboardPage(
  dashboardHeader(),
  dashboardSidebar(),
  dashboardBody(
    wellPanel(tags$div(id="pane",
    fluidRow(
      column(width = 6,valueBox("test","test1"),
             valueBox("test","test2"))),
    fluidRow(
      column(width = 6,valueBox("test","test3"),
             valueBox("test","test4")

             ))),
    tags$style(type="text/css","#pane{font-size:20px;}"))

    ))
# )




server <- function(input, output) {}

shinyApp(ui, server)


结果

css - 光泽井板宽度-LMLPHP

但是,我只需要突出显示的部分;即井板宽度应按盒

css - 光泽井板宽度-LMLPHP

这只是一个例子,除了一个不同的井板外,我还将再添加四个盒子。

最佳答案

尝试在valueBox中使用width

library(shiny)
library(shinydashboard)

ui <- dashboardPage(
  dashboardHeader(),
  dashboardSidebar(),
  dashboardBody(
    fluidRow(column(width = 6, wellPanel(tags$div(id="pane",
         fluidRow(valueBox(width = 6, "test","test1"), valueBox(width = 6, "test","test2")),
         fluidRow(valueBox(width = 6, "test","test3"), valueBox(width = 6, "test","test4")),
         tags$style(type="text/css","#pane{font-size:20px;}")
    ))))
  )
)

server <- function(input, output) {}
shinyApp(ui, server)

10-06 08:57