fileInput框,按钮旁边有标签

时间:2018-08-17 12:36:57

标签: r shiny

在一个闪亮的应用程序中,我想在fileInput()旁边放置一个actionButton()框。但是,由于fileInput()-Box的标签使该框向下移动,因此无法正确对齐框。

enter image description here

我无法移除fileInput()-盒子的标签,也不能给actionButton()标签“在盒子上方”(无论如何都不好)。

如何将actionButton()向下移动以与fileInput()-Box对齐?

library(shiny)

ui = fluidPage(
  sidebarLayout(
    sidebarPanel(
      splitLayout(
        fileInput('file', 'put in file'),
        actionButton('action', 'click here')
      )
    ),
    mainPanel(
      'Test'
    )
  )
)

server = function(input,output) {}

shinyApp(ui, server)

1 个答案:

答案 0 :(得分:1)

您可以使用css属性margin-top来调整位置:

actionButton('action', 'click here', style='margin-top:25px')