作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 Shiny 的新手,不知道如何“取消加粗”标签(所附屏幕截图中的进给率和操作)。这是我的 UI 部分代码:
ui <- fluidPage(titlePanel(""),
sidebarLayout(
sidebarPanel(
# adding the new div tag to the sidebar
tags$div(class="header", checked=NA,
tags$h4(strong("Duty"))),
selectInput('id1', 'Feed rate (m^3/h)', c("All", main$metric[1:3])),
selectInput('id2', 'Operation', c("All", main$metric[4:5])),
mainPanel(DT::dataTableOutput("table"))
))
截图如下:
最佳答案
您可以通过 adding your own style sheet 来完成此操作到你 Shiny 的应用程序。首先我们给侧边栏面板一个类sidebar
,这样我们就可以引用它。然后我们可以将以下内容添加到文件www/style.css
:
.sidebar label {
font-weight: 400;
}
最后,我们将您的fluidPage
的theme
参数设置为“style.css”。
ui <- fluidPage(theme="style.css", titlePanel(""),
# content here
))
结果应该是这样的:
关于在 R 的 Shiny 侧边栏中删除粗体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51088687/
下面是我用来制作 1px 文本描边轮廓的代码。但是如何使轮廓变粗呢?如果我只是用“5px”替换所有“1px”,结果看起来很疯狂。 HTML Hello! CSS .element { color:
我是一名优秀的程序员,十分优秀!