使用此代码我可以获得跨浏览器兼容性,但问题是,这里我需要添加大量相同字体的文件类型,如何避免这种情况并仍然能够获得跨浏览器兼容性?
@font-face {
font-family: 'Name';
src: url('location.eot');
src: url('location.eot#iefix') format('embedded-opentype'),
url('location.woff') format('woff'),
url('location.ttf') format('truetype'),
url('location.svg#Name') format('svg');
font-weight: normal;
font-style: normal;
}