このコードを書きたい
<select name="date[birth]" id="date_birth" class = "span1">
<option value="2011">2011</option>
<option value="2012" selected="selected">2012</option>
<option value="2013">2013</option>
</select>
Rails には select_year ヘルパーがあります。
= select_year(Date.today, :field_name => "birth", :start_year => 2011, :end_year => 2013)
属性でこれに css クラスを追加しようとしました:class => "span1"
が、うまくいきません! 助けてください、ありがとう