I'm attempting to make tableOutput's fonts larger. I look for examples, try to apply the answer to my code, but it doesn't work.
My code :
mainPanel(span(tableOutput('tabledata'), style = "font-size:80%"))
mainPanel(span(tableOutput('tabledata'), style = "font-size:8px"))
mainPanel(span(tableOutput('tabledata'), style = "font-size:8.0pt"))
However, when I tried to modify the color. It does work.
mainPanel(span(tableOutput('tabledata'), style = "color:white"))
What did I do wrong ?