I must change a link_to tag color without using a CSS class, how can I do? I\'ve tried something such as
<%= link_to item.description, {}, {:style=>\'c
This should work with Rails 3
link_to item.description, :style=> 'color:#FFFFFF;', :class => 'css_class'
With the new syntax in rails 4, it becomes
link_to item.description, style: 'color:#FFFFFF;', class: 'css_class'