如何更改Ruby字体输出颜色?

时间:2015-03-26 18:21:47

标签: css ruby

我们怎样才能让Ruby输出成为黄金,同时保持文本(目标和已完成)默认为黑色?

<div class="stats">
 <a href="<%= following_user_path(@user) %>">
  <strong id="following" class="stat">
   <%= @user.goals.unaccomplished.count %>
  </strong>
   Goals
 </a>
 <a href="<%= followers_user_path(@user) %>">
  <strong id="followers" class="stat">
    <%= @user.goals.accomplished.count %>
  </strong>
    Accomplished
 </a>
</div>

我尝试通过<div>类添加它,但随后定位失真,而不是在一行上,文本Goals会在.count下面放一行。

<strong id="following" class="stat">
 <div class="gold">
  <%= @user.goals.unaccomplished.count %>
 </div>
</strong>
  Goals

感谢您的时间。

1 个答案:

答案 0 :(得分:0)

这是你要找的吗?您已经有了可以使用的强标记的课程。

CSS:

body  {color:black;}
.stat {color:yellow;}