簡體   English   中英

R閃亮修復sidebarPanel寬度到特定像素值?

[英]R shiny fix sidebarPanel width to a specific pixels value?

如何將sidebarPanel寬度修復為特定值(以像素為單位),而不是占用與mainPanel相比的總寬度的一部分?

這應該讓你開始:

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; }")
  ),

  ...

)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM