水平形式

时间:2013-10-07 16:18:07

标签: ruby-on-rails twitter-bootstrap

我正在尝试使用bootstrap学习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_field有用,不是吗?

1 个答案:

答案 0 :(得分:0)

您是否尝试使用bootstrap水平表单?

将'form-horizo​​ntal'添加到你的html类ep>

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