我正在处理grails
网络应用程序,我正在尝试应用名为font
的{{1}},但它未在我的网络应用程序中应用。我遵循的程序是:
我已将下面的代码放在我的extended.css文件中
open sans
我错过了什么?
答案 0 :(得分:0)
从任何网站下载您的字体。 得到webFont Generator。 它会生成一个zip文件。在其中获取.css文件并在样式标记中复制并粘贴您的Web中的代码。还将所有文件粘贴到同一目录中。它将运行所有浏览器。
@font-face {
font-family: 'Philosopher';
src: url('WebRoot/fonts/philosopher-regular.eot');
src: url('WebRoot/fonts/philosopher-regular.eot?#iefix') format('embedded-opentype'),
url('WebRoot/fonts/philosopher-regular.woff') format('woff'),
url('WebRoot/fonts/philosopher-regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
body{
font-size: 13px;
font-family: "Philosopher";
}
此代码段对于philospher字体是正确的。您可以使用基于此示例的任何字体。 享受。
答案 1 :(得分:0)