0

我一直在尝试调整表单字段的大小。我试过像这样使用大小......

<%= f.date_select(:form_date, order: [:month, :day, :year], prompt: { month: 'Select Month', day: 'Select Day', year: 'Select Year' }, start_year: 2000, size: 1) %>

我是否只是按错误的顺序输入尺寸(尺寸:1 不应该是最后一个)?这在我的样式表中处理得最好吗?

提前致谢。

4

1 回答 1

1

原来我正在混合选项和 html_options

date_select(object_name, method, options = {}, html_options = {}) Link

这是我将代码行从上面更改为...

<%= f.date_select(:form_date, options = { order: [:month, :day, :year], prompt: { month: 'Select Month', day: 'Select Day', year: 'Select Year' }, start_year: 2000 }, html_options = { size: 1 }) %>
于 2013-01-21T06:18:31.027 回答