我也面临同样的问题。我把我的css文件放在css
文件夹中。我把 ttf 文件放在文件www
夹里,但它不能正常工作,所以我把我的 ttf 文件移到了css
文件夹中。这是我的代码:
@font-face
{
font-family: CustomArial;
src: url('arial.ttf');
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
font-family: CustomArial;
}
如果您使用的是 jquery mobile,则必须覆盖字体,例如:
.ui-bar-a, .ui-bar-a input, .ui-bar-a select, .ui-bar-a textarea, .ui-bar-a button {
font-family: CustomArial !important;
}
对于具有 font-family:Helvetica、Arial、sans-serif 的任何 jquery 移动类,您必须覆盖 css 中的 font-family;至
font-family:CustomArial !important;
现在它将起作用。你可以试试这样,可能对你有用。