Explorer (11) 字体包含不起作用
Explorer (11) font include doesn't work
我真的不知道我的 css 有什么问题,但字体在 ie 中不起作用。我尝试了在这里或网上找到的所有内容。有人知道吗? (我的eot字体是otf转过来的。)
这是我的 css:
@font-face {
font-family: 'glober-bold';
src: url('glober-bold.eot?#iefix') format('embedded-opentype'),
url('glober-bold.ttf') format('truetype'),
}
body{font-family:"glober-bold", sans-serif;}
尝试更多这样的格式(包括 WOFF):
@font-face {
font-family: 'BankGothicMdBTMedium';
src: url('style/bankgthd-webfont.eot');
src: local('BankGothic Md BT'), local('BankGothicBTMedium'), url('style/bankgthd-webfont.woff') format('woff'), url('style/bankgthd-webfont.ttf') format('truetype'), url('style/bankgthd-webfont.svg#webfontNgZtDOtM') format('svg');
font-weight: normal;
font-style: normal;
}
HTML, BODY {
font-family: BankGothicMdBTMedium, tahoma, lucida, courier;
font-size: 18px;
}
我真的不知道我的 css 有什么问题,但字体在 ie 中不起作用。我尝试了在这里或网上找到的所有内容。有人知道吗? (我的eot字体是otf转过来的。) 这是我的 css:
@font-face {
font-family: 'glober-bold';
src: url('glober-bold.eot?#iefix') format('embedded-opentype'),
url('glober-bold.ttf') format('truetype'),
}
body{font-family:"glober-bold", sans-serif;}
尝试更多这样的格式(包括 WOFF):
@font-face {
font-family: 'BankGothicMdBTMedium';
src: url('style/bankgthd-webfont.eot');
src: local('BankGothic Md BT'), local('BankGothicBTMedium'), url('style/bankgthd-webfont.woff') format('woff'), url('style/bankgthd-webfont.ttf') format('truetype'), url('style/bankgthd-webfont.svg#webfontNgZtDOtM') format('svg');
font-weight: normal;
font-style: normal;
}
HTML, BODY {
font-family: BankGothicMdBTMedium, tahoma, lucida, courier;
font-size: 18px;
}