例如,在创建表单时是否可以在标签中使用字体真棒图标。
如果我的表格看起来像这样
<%= f.label :email %>
<%= f.email_field :email, :autofocus => true %>
我如何将 i 类添加到标签中?
我试过这个
<%= f.label :email, :class => 'icon-user' %>
<%= f.email_field :email, :autofocus => true %>
但这不起作用?
例如,在创建表单时是否可以在标签中使用字体真棒图标。
如果我的表格看起来像这样
<%= f.label :email %>
<%= f.email_field :email, :autofocus => true %>
我如何将 i 类添加到标签中?
我试过这个
<%= f.label :email, :class => 'icon-user' %>
<%= f.email_field :email, :autofocus => true %>
但这不起作用?