我正在尝试使用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有用,不是吗?
答案 0 :(得分:0)
您是否尝试使用bootstrap水平表单?
将'form-horizontal'添加到你的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