在rails 2.3.8中@ font-face

时间:2013-09-26 09:15:49

标签: css ruby-on-rails fonts ruby-on-rails-2

嗨有没有人知道如何在rails应用程序中包含字体空间和字体..我正在使用rails 2.3.8

我将我的字体文件夹放在公共文件夹中 并且我的css在下面给出..但它无法正常工作可以帮助我。

我的css

 @font-face {
            font-family: 'Conv_code128';
            src: url('fonts/code128.eot');
            src: local('☺'), url('fonts/code128.woff') format('woff'), url('fonts/code128.ttf') format('truetype'), url('fonts/code128.svg') format('svg');
            font-weight: normal;
            font-style: normal;
        }

查看页面

<div style= "  float: left;
          font-family: 'Conv_code128';
          font-size: 25px;
          margin-left: 50px;">
    <%= hai %>
  </div>

1 个答案:

答案 0 :(得分:2)

尝试将字体上传到您的服务器并尝试使用此代码

<style type="text/css">
@font-face {
    font-family: "My Custom Font";
    src: url(http://www.example.org/mycustomfont.ttf) format("truetype");
}
p.customfont { 
    font-family: "My Custom Font", Verdana, Tahoma;
}
</style>
<p class="customfont">Hello world!</p>