Official way of adding custom fonts to Rails 4?

前端 未结 5 526
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-08 04:37

I\'m researching how to add custom fonts to my Rails app, e.g. by adding a fonts folder in the assets folder - and I cannot find an \"official\" Rails way on ho

5条回答
  •  失恋的感觉
    2020-12-08 05:14

    The only way that worked for me was this:

    @font-face {
      font-family: 'Vorname';
      src: asset-url('Vorname.otf') format('truetype'),
           asset-url('Vorname.ttf') format('truetype');
    }
    

提交回复
热议问题