Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Firefox では、ページがロードされると、指定された font-face を使用してレンダリングされる前に、(接続速度に応じて) しばらくデフォルトのフォント (Times New Roman など) が表示されます。これが高速にならないことは理解していますが、たとえば、フォント フェイスの読み込み時に変更される前に、Arial をデフォルト フォントとして設定するにはどうすればよいですか?
font-family プロパティで追加のフォントを指定すると、問題が解決します。
font-family: "YourFontFaceFont", arial;
これにより、"YourFontFaceFont" が利用可能になるまで arial が使用されます。