Google网络字体导致Safari崩溃

时间:2019-09-18 21:57:29

标签: html css google-webfonts

我的应用程序已在Safari上崩溃(仅),并且将其范围缩小到这一行:

<link href="https://fonts.googleapis.com/css?family=Quicksand:300,400,500,600,700&display=swap" rel="stylesheet">

如果我仅装载一个砝码,则此行不会引起任何问题,但是添加第二个砝码后,Safari再次崩溃。换句话说,以下工作原理:

<link href="https://fonts.googleapis.com/css?family=Quicksand:300&display=swap" rel="stylesheet">

...这也有效

    <link href="https://fonts.googleapis.com/css?family=Quicksand:300&display=swap" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css?family=Quicksand:400&display=swap" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css?family=Quicksand:500&display=swap" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css?family=Quicksand:600&display=swap" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css?family=Quicksand:700&display=swap" rel="stylesheet">

知道为什么会发生这种情况吗?

0 个答案:

没有答案