想知道我是否在CSS中的@ font-face中包含各种字体格式,无论是否在浏览器中使用它们,或者只下载浏览器中使用的那些字体格式,它们都会被下载? / p>
@font-face {
font-family: 'my-web-font';
src: url('webfont.eot');
src: url('webfont.eot?#iefix') format('embedded-opentype'),
url('webfont.woff') format('woff'),
url('webfont.ttf') format('truetype'),
url('webfont.svg#webfont') format('svg');
font-weight: normal;
font-style: normal;
}