0

Twitterbootstrap に付属のグリフィコンを Rails アプリケーションで使用したいと考えています。ドキュメントによると、

All icons require an <i> tag with a unique class, prefixed with icon-. To use, place the following code just about anywhere:
    <i class="icon-remove"></i>

次のコードを使用してエラー メッセージを生成していますが、タグを含める方法がわかりません。

   <ul>
      <% @errors.each do | msg| %>
      <li><%= content_tag :div, msg, :id => "flash", :class => "icon-remove" %></li>
    <% end %>

    </ul>
4

1 に答える 1