Shiny customize selectInput/selectizeInput
问题 I want my Shiny select input to: Has no label Has customized background colour: #2f2d57 Has placeholder Enable users to type-in and select However, I can't make the app follow the above 4 rules together. My codes are below: Data: table <- data.frame(col1 = c(3, 4, 8, 5, 2, 6, 7)) Attempt 1 Problem: Users are unable to type-in and select from the selectInput ui <- fluidPage( uiOutput("container") ) server <- function(input, output) { output$container <- renderUI({ fluidRow( tags$style("#three