0

我正在尝试使用引导程序研究 Rails。

我认为简单的形式非常有用。

所以,我写了这样的rails。

= simple_form_for @user, :as => :user, :url => {:action => 'serarch'}, :html => {:class => 'well'} do |f|
  = f.input :user_name
  = f.input :birth_day

这个很不错。

但是,我想将这些输入表单水平放置在我的浏览器上。

这个怎么做 ?

我不想使用 f.input_field。

input 比 input_field 有用,不是吗?

4

1 回答 1

0

您是否尝试使用引导程序的水平形式?

将“form-horizo​​ntal”添加到您的 html 类中,例如

= simple_form_for @user, :as => :user, :url => {:action => 'serarch'}, :html => {:class => 'well form-horizontal'} do |f|
  = f.input :user_name
  = f.input :birth_day
于 2013-10-07T16:25:15.227 回答