问题
What is the Shiny default font? Where to look it up?
library(shiny)
ui <- fluidPage("What font is used here?")
server <- function(input, output, session) {}
shinyApp(ui, server)
回答1:
Well using the HTML inspect tool in Internet Explorer we find that Shiny is using "Helvetica Neue",Helvetica,Arial,sans-serif as default text-font and as @Caramiriel already mentioned is this taken from bootstrap.min.css
来源:https://stackoverflow.com/questions/48028990/what-is-the-shiny-default-font