1
我在Shiny的UI界面中有兩個fluidRows。如何消除閃爍之間流體行間頑固的空白?
我想頂行上面有一個小空格,但是我想消除行之間的任何空格。
我試過
div
,tags
和風格參數,像margin: 0px
和padding: 0px ...
的分類,但我不能讓間距採取相應的行動。下面是一個例子:
ui <- fluidPage( fluidRow( column(1,offset=0, div(style = "font-size: 10px; padding: 14px 0px; margin:0%", fluidRow( sliderInput(inputId = "sizeSlide", label = "Sizing", value = 10, min = 1,max = 20) ) ), div(style = "font-size: 10px; padding: 0px 0px; margin:0px", fluidRow( radioButtons(inputId = "greatORless", label = "DBH Limiter", choices = c(">", "<"), selected = ">") ) ) ) ) )
我得到的是這樣的:
我想是這樣的:
如何做到這一點?
工程!謝謝:) – theforestecologist
很高興知道它的工作原理,請考慮通過點擊複選標記來接受答案。它可以幫助其他人。 – Geovany
當然可以。我只是想等幾天才能接受,以便給別人一個回答的動機:p。但是你的方法有效,所以我會給你檢查:) – theforestecologist