1

危険信号の取得:

Web フォントの読み込み中にテキストが表示されたままになるようにする font-display CSS 機能を活用して、Web フォントの読み込み中にテキストがユーザーに表示されるようにします

フォント宣言に font-display: auto があります。

@font-face {
  font-family: 'lagosregular';
  src: url('../fonts/lagos-webfont.woff2') format('woff2'),
  url('../fonts/lagos-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: auto;
}

https://africankitchen.gallery

4

2 に答える 2