R闪亮修复sidebarPanel宽度到特定像素值?

时间:2013-11-08 09:46:33

标签: r shiny

如何将sidebarPanel宽度修复为特定值(以像素为单位),而不是占用与mainPanel相比的总宽度的一部分?

1 个答案:

答案 0 :(得分:10)

这应该让你开始:

sidebarPanel(
  tags$head(
    tags$style(type="text/css", "select { max-width: 140px; }"),
    tags$style(type="text/css", ".span4 { max-width: 190px; }"),
    tags$style(type="text/css", ".well { max-width: 180px; }")
  ),

  ...

)