Google Fonts图标和css CDN链接的区别?

问题描述 投票:0回答:1

这是关于使用 https://fonts.googleapis.com/iconhttps://fonts.googleapis.com/css 我在使用Google Fonts的Google Material Icons CDN时注意到了这一点。一些来源列出 fonts.googleapis.comNoto+Sans I am just curious. Thanks! This is regarding the usage of https:家族=材料+图标 而其他国家则列出了 fonts.googleapis.com图标家族=材料+图标. 两者似乎工作完全一样。我只是想知道是否有人知道任何技术上的差异? 奇怪的是,我也能够做的事情,如

fonts.googleapis.com
cdn google-font-api google-fonts google-cloud-cdn
1个回答
0
投票

根据GCP文档 CSS API v2 你应该可以使用其他的前台或图标家族。

<html>
  <head>
    <link rel="stylesheet"
          href="https://fonts.googleapis.com/css2?family=Crimson+Pro">
    <style>
      body {
        font-family: 'Crimson Pro', serif;
        font-size: 48px;
      }
    </style>
  </head>
  <body>
    <div>Making the Web Beautiful!</div>
  </body>
</html>

此外,你可能会注意到fonts.googleapis.comcss?family=Material+Icons和fonts.googleapis.comicon?family=Material+Icons不同的来源类似于其他谷歌网络字体,正确的CSS将被服务于激活特定于浏览器的 "Material Icons "字体。一个额外的CSS类将被声明为.material-icons。任何使用该类的元素都会有正确的CSS来渲染这些来自网络字体的图标。材料图标指南

© www.soinside.com 2019 - 2024. All rights reserved.