我们说我有以下字体定义:
@font-face {
font-family: "Open Sans";
font-style: normal;
font-weight: 400;
src: url("../fonts/open-sans.regular.woff") format("woff");
}
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 300;
src: url('../fonts/open-sans.light.woff') format('woff');
}
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 600;
src: url('../fonts/open-sans.semibold.woff') format('woff');
}
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 700;
src: url('../fonts/open-sans.bold.woff') format('woff');
}
在Chrome的开发工具中,我可以分辨出正在使用的字体系列:
但有没有办法告诉使用哪个特定的字体文件?我试图验证浏览器是否实际使用了字体的粗体版本,例如,而不是自己做假的'假的'在常规版本的字体上加粗。
答案 0 :(得分:5)
答案 1 :(得分:0)
答案 2 :(得分:0)
在Safari中,它会告诉我们。您加载的特定字体文件。
Fonts
fontfileBold.ttf
答案 3 :(得分:0)