7

How do I refer to assets within a CSS file?

I am using Play Framework 2.1.3 (Scala).

@font-face
{
    font-family: RockSalt;
    src: url('...something.../assets/fonts/MyFont.ttf');
    format('truetype');
}
4

1 回答 1

7

在 Play 中这个主题没有什么神奇之处,只需在 CSS 文件中使用字体文件的相对路径即可。IE。如果您有cssfonts文件夹在同一级别,它将是:

src: url('../fonts/MyFont.ttf');

如果您对资产使用默认路由,它也可以是相对于应用程序根目录的路径:

src: url('/assets/fonts/MyFont.ttf');
于 2013-10-21T06:45:42.203 回答