Add css class to rails link_to helper

后端 未结 5 2004
星月不相逢
星月不相逢 2020-12-24 10:43

I\'m trying to style a rails link using css using the following code:

<%= link_to \"Learn More\", :controller => \"menus\", :action => \"index\", :         


        
5条回答
  •  一生所求
    2020-12-24 10:51

    This is how i solved it using another view engine, HAML just in case a fellow developer is having this need

    %i= link_to "Add New Blog Post", user_post_edit_new_url(current_user), :class  => "fa fa-plus-circle"
    

提交回复
热议问题