简体   繁体   中英

Font not loading properly

Here is the Ruby on Rails view code

<style type="text/css">
    @font-face {
      font-family: 'MyFont';
      src: url('<%= asset_path('pricedown.ttf') %>');
    }

    h1.my-font { 
        font-family: "MyFont", Verdana, Tahoma;
        font-size: 50px;
    }
</style>
<h1 class="my-font">the rascals</h1><hr>

The code's output is like this 在此处输入图片说明

The custom Font is of course loaded but I am not getting it like what I saw by opening the actual font file... Actual font file looks like this.. 在此处输入图片说明

As you can see, letters like 'h' and 'r' not showing properly. Is it because I missed something in the CSS part?

尝试重新下载并使用该字体。

h1.my-font { 
    font-family: "MyFont";
    font-size: 50px;
}

should work

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM