我正在尝试使用下面的代码(在ui.r中)更改ID为test_type
的siderbarPanel的字体大小和颜色,但它不起作用?
tags$head(tags$style("#test_type{color: red;
font-size: 20px;
font-style: italic;
}"
)
)
有什么想法吗?
答案 0 :(得分:1)
我假设您要更改ui中输入字段元素的颜色和字体。你可以这样做:
sidebarPanel(
tags$head(tags$style(type="text/css",
".test_type {color: red;
font-size: 20px;
font-style: italic;}"
)
),
div(class="test_type",
textInput(inputId="ti1", label="Text Input 1", value = "test"))
)
但是如果您想要自定义sidebarPanel本身,请检查