What is the Shiny default font?

泪湿孤枕 提交于 2020-03-22 10:25:12

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!