这是我上一个问题(How to change the width and height of verbatimTextOutput in Shiny and Shinydashboard)的后续问题。我想创建一个与verbatimTextOutput
相同的textInput
外观。下面是一个例子。
现在,除了标题和文本框之间的空格外,几乎所有内容都是相同的,如红线所示。我在strong
函数中使用一行文本来模仿textInput
中的标题。有没有办法增加此行和erbatimTextOutput , making the appearance as the same as the
textInput`之间的空间?
代码
# Load the packages
library(shiny)
library(shinydashboard)
# User Interface
ui <- dashboardPage(
header = dashboardHeader(title = ""),
sidebar = dashboardSidebar(
sidebarMenu(
menuItem(
text = "Example",
tabName = "tab1"
)
)
),
body = dashboardBody(
tabItems(
tabItem(
tabName = "tab1",
tags$head(
tags$style(
HTML(
"
.form-control {
border-radius: 4px 4px 4px 4px;
}
#txt1_out {
font-family: 'Source Sans Pro','Helvetica Neue',Helvetica,Arial,sans-serif;
font-size: 14px;
width: 300px;
max-width: 100%;
padding: 6px 12px;
white-space: pre-wrap;
}
"
)
),
tags$script("
Shiny.addCustomMessageHandler('selectText', function(message) {
$('#txt2_out').prop('readonly', true);
});
")
),
column(
width = 4,
textInput(inputId = "txt1", label = "Text input no.1", value = "abcde12345"),
strong("Text output no.1"),
verbatimTextOutput(outputId = "txt1_out", placeholder = TRUE)
)
)
)
)
)
server <- function(input, output, session){
output$txt1_out <- renderText({
input$txt1
})
}
# Run the app
shinyApp(ui, server)
答案 0 :(得分:1)
您可以将margin-top: 7px;
添加到:
#txt1_out {
font-family: 'Source Sans Pro','Helvetica Neue',Helvetica,Arial,sans-serif;
font-size: 14px;
width: 300px;
max-width: 100%;
padding: 6px 12px;
white-space: pre-wrap;
margin-top: 7px;
}
您可以使用此值(6px?)。我首先使用具有以下功能的Chrome DevTools检查了Text input no.1
:
label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: 700;
}
我尝试匹配margin-bottom: 5px
,但是元素在所有方面都不相同,因此我选择了7px。