Different css style for each form using simple_form gem
Is it possible to have different classes for each sim开发者_开发知识库ple_form so you can apply different stylesheets??
You can specify class attributes using the html option, thus:
simple_form_for object, :html => {:class => "myform"} do |f|
end
精彩评论