我有一个名为的目录,其中project
有目录html
,资产有目录,目录有一个名为的css文件。字体目录有我正在使用的所有字体。assets
javascript
directory
fonts
css
css
typography.css
在html
目录里面我有一个文件typography.html
。要使用字体,我正在使用此代码,该代码typography.css
在我的 html 文件中正确链接/引用。但是此代码在里面typography.css
@font-face {
font-family: "LatoLight";
src: url('../fonts/lato-light-webfont.eot') format("embedded-opentype"), url('../fonts/lato-light-webfont.woff') format("woff"), url('../fonts/lato-light-webfont.ttf') format("truetype"), url('../fonts/lato-light-webfont.svg') format("svg");
}
h1{ font-family: LatoLight !important; }
不会产生预期的结果。我正在使用 twitter bootstrap 3。为什么这不起作用?