gpt4 book ai didi

减少 Shiny 中 fileInput 和文本之间的空间

转载 作者:行者123 更新时间:2023-12-05 00:56:19 24 4
gpt4 key购买 nike

你能帮我减少 Shiny 中 fileInput 和 text 之间的空间吗?我想留下类似于我附上的图的东西。可执行代码如下。

谢谢!

runApp(
list(ui = fluidPage(
fileInput("data", h3("Excel database import")), uiOutput("tab"),
),
server = function(input, output, session){
url <- a("Google Homepage", href="https://www.google.com/")
output$tab <- renderUI({
tagList("Access the page:", url)
})
})
)

执行shiny时如何:

enter image description here

我希望它是怎样的:

enter image description here

最佳答案

作为 Pork Chop 解决方案的替代方案,您可以在想要靠近的两个元素之间插入带有负 margin-topdiv 元素:

ui = fluidPage(
fileInput("data", h3("Excel database import")),
div(style = "margin-top: -30px"),
uiOutput("tab")
)

关于减少 Shiny 中 fileInput 和文本之间的空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62476054/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com