You can change the filling:
library(shiny) runApp( list(ui = fluidPage( wellPanel( tags$div(class = "row", tags$div(class = "span"), tags$div(class = "span1", h1(numericInput(inputId="num", label="ID", value=NaN))), tags$div(class = "span2", h1(sliderInput(inputId="age", "Age Range", min=32, max=99, value=c(32, 99), step=1))), tags$div(class = "span1", h1(radioButtons(inputId="gender", "Gender", c("combined" = 0, "male" = 1, "female" = 2), inline=FALSE))), tags$div(class = "span1", h1(textOutput("text"))) ) , style = "padding: 5px;") , wellPanel( tags$div(class = "row", tags$div(class = "span"), tags$div(class = "span1", h1(numericInput(inputId="num1", label="ID", value=NaN))), tags$div(class = "span2", h1(sliderInput(inputId="age1", "Age Range", min=32, max=99, value=c(32, 99), step=1))), tags$div(class = "span1", h1(radioButtons(inputId="gender1", "Gender", c("combined" = 0, "male" = 1, "female" = 2), inline=FALSE))), tags$div(class = "span1", h1(textOutput("text1"))) ) , style = "padding: 45px;") ) , server = function(input, output, session){ } ) )
