今天換介紹如何更改 Shiny 裡面 Box的各個地方
當然也是可以藉由shinydashboard裡支援的去改背景顏色
但那些顏色實在是......
所以同樣的藉由HTML去修改
以下提供做法
努力搞懂HTML中........
tags$head(
tags$style(HTML("
div.box {
color : #000000 ;
background-color: #F9F3EB ;
text-align: left;
border-style: solid;
border-top-color:#272B30;
border-bottom-color:#272B30;
border-left-color:#272B30;
border-right-color:#272B30;
border-top-width:7px;
border-bottom-width:2px;
border-left-width:2px;
border-right-width:2px;
font-family: Microsoft JhengHei, serif;
font-weight: bold;
font-size: 14px;
}
")
)
)
其實學習中可以發現用HTML改實在是很自由
想改什麼部分都可以
我真希望我趕快學會阿阿阿阿