我是新手上的红宝石,我需要一些帮助来弄清楚如何设计我制作的表格。 这是我的html文件中的表单代码:
<%= form_for @article do |t| %>
<%= t.text_field :title, :html => { :class => 'title' } %>
<%= t.text_area :body, :html => { :class => 'body' } %>
<%= t.submit 'Create', :html => { :class => 'create' } %>
答案 0 :(得分:3)
你可以做这样的事情
<%= form_for @article do |t| %>
<%= t.text_field :title, :class => 'class_name' %>