R shiny mainPanel display style and font

前端 未结 3 833
攒了一身酷
攒了一身酷 2021-01-31 10:16

I\'m learning shiny apps and have some basic questions about tweaking the layout, particularly style and font. I\'d be grateful for pointers or explicit answers, thanks!

3条回答
  •  轮回少年
    2021-01-31 10:59

    You can include arbitrary html, for example, within the call to sidebarpanel, you can do

    HTML('')
    

    this is just something copied from one of my Shiny apps

    You could use inspector tools in the browser to figure out what css elements need to be changed.

    If you use a wellPanel inside the mainPanel this modifies that wellPanel to be blue

    HTML(''), 
    

提交回复
热议问题