2

我正在尝试重新格式化我的 Shiny 应用程序中的所有标签。在这样做时,我想依靠标签并使用以下解决方案:

tags$head(tags$style(
  HTML(
    "label {font-weight: italic; font-family:Times New Roman; margin-bottom:20px;}"
  )
))

不幸的是,这并没有改变我的文本输入、输入选择器等标签中的任何内容。

我很感激任何帮助!

4

1 回答 1

0

尝试:

HTML(
  "label.control-label {
    font-style: italic; 
    font-family: 'Times New Roman'; 
    margin-bottom: 20px;
  }"
)

或者

HTML(
  "label {
    font-style: italic !important; 
    font-family: 'Times New Roman' !important; 
    margin-bottom: 20px !important;
  }"
)
于 2021-07-23T19:02:13.220 回答