shiny fluidrow column white space

前端 未结 1 1347
野趣味
野趣味 2020-12-29 07:05

I have a top banner that I want to split into two separate sections representing two different inputs. To do this, I\'ve created a fluidRow and with two columns, one for eac

相关标签:
1条回答
  • 2020-12-29 07:52

    The white space is the padding of the column div. To remove that, use

    column(width = 6, offset = 0, style='padding:0px;', ...)
    
    0 讨论(0)
提交回复
热议问题