Jaki jest właściwy sposób użycia, @font-face
aby przeglądarka nie pobierała czcionki, jeśli użytkownik ją już posiada?
Używam @ font-face do zdefiniowania DejaVu, który jest już zainstalowany w moim systemie (linux). Firefox nie pobiera czcionki, ale Chromium pobiera ją za każdym razem!
Mój kod CSS oparty na wiewiórce czcionek i to pytanie wygląda następująco:
@font-face {
font-family: 'DejaVu Serif';
src: url('DejaVuSerif-webfont.eot');
src: local('DejaVu Serif'), url('DejaVuSerif-webfont.woff') format('woff'), url('DejaVuSerif-webfont.ttf') format('truetype'), url('DejaVuSerif-webfont.svg#webfontCFu7RF0I') format('svg');
font-weight: normal;
font-style: normal;
}
/* ... @font-face definitions for italic and bold omitted ... */
@font-face {
font-family: 'DejaVu Serif';
src: url('DejaVuSerif-BoldItalic-webfont.eot');
src: local('DejaVu Serif Bold Italic'), url('DejaVuSerif-BoldItalic-webfont.woff') format('woff'), url('DejaVuSerif-BoldItalic-webfont.ttf') format('truetype'), url('DejaVuSerif-BoldItalic-webfont.svg#webfontQAewh7pf') format('svg');
font-weight: bold;
font-style: italic;
}