我们怎样才能让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
感谢您的时间。
答案 0 :(得分:0)
这是你要找的吗?您已经有了可以使用的强标记的课程。
CSS:
body {color:black;}
.stat {color:yellow;}