Я разрабатываю веб-сайт на своем промежуточном сервере в Firefox 3.6 со значением http://downhamcottage.co.uk/test
У меня есть файл CSS, связанный с сайтом, который
Я получаю нижние шрифты впорядок размещения шрифтов, например, без засечек при начальной загрузке страницы, а затем включается шрифт Museo 300 и 500, как только пользователь нажимает на другую страницу.Он работает нормально в других браузерах даже в ie7!Стиль @ font-face, используемый в таблице стилей, выглядит следующим образом:
@font-face {
font-family: 'PermanentMarkerRegular';
src: url('../fonts/permanentmarker-webfont.eot#') format('eot'),
url('../fonts/permanentmarker-webfont.ttf') format('truetype'),
url('../fonts/permanentmarker-webfont.woff') format('woff'),
url('../fonts/permanentmarker-webfont.svg#webfontEHg8OqO7') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Museo300';
src: url('museo300-regular-webfont.eot');
src: url('../fonts/museo300-regular-webfont.eot#') format('eot'),
url('../fonts/museo300-regular-webfont.woff') format('woff'),
url('../fonts/museo300-regular-webfont.ttf') format('truetype'),
url('../fonts/museo300-regular-webfont.svg#webfontGEzJeS93') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Museo500';
src: url('museo500-regular-webfont.eot');
src: url('../fonts/museo500-regular-webfont.eot#') format('eot'),
url('../fonts/museo500-regular-webfont.woff') format('woff'),
url('../fonts/museo500-regular-webfont.ttf') format('truetype'),
url('../fonts/museo500-regular-webfont.svg#webfontZgaZZaau') format('svg');
font-weight: normal;
font-style: normal;
}
Любые мысли о том, почему это произойдет в Firefox 3.6 для Mac, приветствуются, так как я говорю, что он отлично смотрится в других браузерах.