字体表面没有出现

时间:2013-12-29 16:34:50

标签: html css fonts skeleton-css-boilerplate

我正在使用Skeleton Grid System,我按照网格文件中提供的layout.css文件中注释的说明更改了我的页面的全局字体。我发现的问题是它没有覆盖base.css文件字体。

以下是我在layout.css文件中所做的更改:

enter image description here

我将文件夹“fonts”添加到根目录:

enter image description here

当我在本地运行页面时,会出现base.css文件字体:

enter image description here

enter image description here

我是否只需要覆盖base.css文件?

1 个答案:

答案 0 :(得分:0)

@font-face只是声明要使用哪种字体。要实际应用Web字体,请执行类似的操作。

body {
    font-family: 'HouschaAlt', helvetica, sans-serif;
}

我认为这个定义需要放在base.css文件中。