从 shinydashboard 框中删除标题部分

Delete title section from shinydashboard box

如何删除 shiny 框中的 title 部分?或者将它的高度降低到 0?不,我不想要 NULL=""

library(shiny)
library(plotly)
library(shinydashboard)

ui <- dashboardPage(
  dashboardHeader(),
  dashboardSidebar(),
  dashboardBody(
    fluidRow(
      box(width=12)),
    fluidRow(
      box(title="something"),
      box())
  )
)

server <- function(input, output) { 

}

shinyApp(ui, server)

对于遇到此问题的任何人,您可以参考另一个 post 由 'bobbel` 回答的解决方案:

提供的“css”解决方案对我有用。