Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将 Zurb Icon Fonts 3 包含到我的 Moovweb 项目中。首先,支持吗?其次,我必须做什么才能让他们工作。我尝试了几种不同的导入组合,但每次都会显示一个空白的本地主机页面。
先感谢您。
一种方法是在放置基础字体fonts的文件夹下创建一个文件夹。assets/images
fonts
assets/images
然后,您将在foundation-icons.scss文件stylesheets夹中包含该文件,但将其重命名为部分文件:_foundation-icons.scss
foundation-icons.scss
stylesheets
_foundation-icons.scss
编辑参考文献,_foundation-icons.scss使它们指向image-url("fonts/foundation-icons.ttf")等。
image-url("fonts/foundation-icons.ttf")
然后你可以@import "_foundation-icons.scss";在你的主样式表中编译样式。
@import "_foundation-icons.scss";