我想增加一行中的字体大小。下面是我正在尝试的代码:
fluidRow(
column(12, div(style="height:20px;font-size: 35px;"),'Approval Request Summary'))
知道我在做什么错吗?
答案 0 :(得分:1)
您几乎正确。您只需要确保要渲染的文本在对div()
的调用之内,而不是在其外部(您当前所在的位置)之内。
以下内容应为您提供预期的结果:
ui <- fluidPage(
fluidRow(
column(width = 12,
div(style = "height:20px; font-size:35px;",
'Approval Request Summary'))
)
)
shinyApp(ui, server = function(input, output) {})