【发布时间】:2022-06-25 14:26:02
【问题描述】:
我正在尝试使用 Google 字体,第一种情况和第二种情况有什么区别吗?比如第二种情况下styles.css文件中定义的字体是否在浏览器中渲染较晚。
<!-- 1st case -->
<link rel="stylesheet" href="google font url">
<link rel="stylesheet" href="./styles.css">
<!-- 2nd case -->
<link rel="stylesheet" href="./styles.css">
<link rel="stylesheet" href="google font url">
【问题讨论】:
-
是的,因为css是级联的……