How to make label and box align next to each other in shiny::numericInput?
问题 Is it possible to create a numericInput() for shiny where box is next to the label (instead of below it which is the default). Here is a simple example: library(shiny) ui <- shinyUI(fluidPage( titlePanel("Shiny with lots of numericInput()"), sidebarLayout( sidebarPanel( fluidRow( column(6, numericInput("a1", label = "A1", value = 1)), column(6, numericInput("b1", label = "B1", value = 1)) ), fluidRow( column(6, numericInput("a2", label = "A2", value = 2)), column(6, numericInput("b2", label =