【发布时间】:2014-01-06 23:32:35
【问题描述】:
因此尝试将自定义 @font-face 字体添加到我的 asp.net 项目中。可以在 chrome 浏览器中运行...
@font-face
{
font-family: "Century Gothic";
src: url('GOTHIC.TTF'),
}
body {
background-color: #fff;
border-top: solid 10px #000;
color: #333;
font-size: .85em;
font-family: "Century Gothic", Segoe UI, Verdana, Helvetica, Sans-Serif;
margin: 0;
padding: 0;
}
但需要其他人的帮助......(这是我的尝试)......但不起作用:
@font-face
{
font-family: "Century Gothic";
src: url('../GOTHIC.eot');
src: url('../GOTHIC.eot?#iefix') format('embedded-opentype'),
url('../GOTHIC.woff') format('woff'),
url('../GOTHIC.ttf') format('truetype'),
url('../GOTHIC.svg#URWClassicoItalic') format('svg');
font-weight: normal;
font-style: normal;
}
我也不确定我是否需要 .eot、.woff 等扩展名。我只加了
GOTHIC.TTF
GOTHICB.TTF
GOTHICBI.TTF
GOTHICI.TTF to my prjoect.
工作地点:
http://stackoverflow.com/questions/8115302/font-face-not-working-even-after-trying-everything-i-could-think-of?rq=1
http://stackoverflow.com/questions/6238737/font-face-with-embedded-font-does-not-work?rq=1
http://stackoverflow.com/questions/20659571/adding-a-custom-font-to-vs-2010-fontface
【问题讨论】:
标签: c# asp.net fonts font-face webfonts