Symfony 2中CSS文件中的@ font-face规则

时间:2015-03-11 10:37:16

标签: css symfony fonts

我正在寻找包含Symfony中CSS文件的字体。问题是浏览器无法加载这些字体。

@font-face {
    font-family: 'Corbert'; /*a name to be used later*/
    src:    url('fonts/Corbert-Regular.otf')  format('opentype'),
            url('fonts/Corbert-Regular.woff') format('woff'),
            url('fonts/Corbert-Regular.ttf') format('truetype');
}

我的路径结构是

...
+-src/
| +-MyCompany/
|   +-MyBundle/
|     +-Resources/
|       +-public/
|         +-css/
|           +-fonts/

我链接CSS文件的路径是
path linking CSS http://img11.hostingpics.net/pics/602795Capture.png

fonts http://img11.hostingpics.net/pics/302550Capture.png

我做错了什么?

1 个答案:

答案 0 :(得分:1)

看起来好像没有将字体文件包含在fonts文件夹中。?

编辑原始问题后:

你需要在bootstrap之前包含jQuery库。 您可以从jquery.com下载它或只链接到在线版本。

最后看起来应该是这样的:

    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
    <!-- Include all compiled plugins (below), or include individual files as needed -->
    <script src="js/bootstrap.min.js"></script>