我有一個簡單的形式和引導的rails 4應用程序。Rails簡單形式Bootstrap - 複選框內聯垂直對齊
我在我的表單中有複選框元素。我想使複選框與其他字段中的內容垂直對齊。此時複選框比其他字段中的其餘內容更進一步。
例如:
<%= f.input :experiment, :as => :boolean, :label => false, inline_label: 'Do you want experiment logs or methods?' %>
有誰知道如何使垂直排列均勻,從而複選框未出的表單元素的其餘部分的左邊?
謝謝
就上述擴大,
我想留的複選框與其他表單元素的左邊緣對齊。目前,它進一步離開(就像該複選框元素上存在某種負邊界)。
我希望所有三個這些現場輸入在左對齊齊平。目前,在這兩個布爾元素的複選框,比第三個文本框進一步左:
<%= f.input :survey, :as => :boolean, :label => false, inline_label: 'Do you need survey responses?' %>
<br><br>
<%= f.input :survey_link, label: 'Where is your survey?', :label_html => { :class => 'question-data' }, placeholder: 'Include a link to your survey', :input_html => {:style=> 'width: 650px; margin-top: 20px', class: 'response-project'} %>
<br>
<%= f.input :experiment, :as => :boolean, :label => false, inline_label: 'Do you want experiment logs or methods?' %>
如果您向我們展示演示會很棒。目前還不清楚你想達到什麼目標。 – ProblemSlover 2014-09-23 11:06:23
嗨 - 我在上面添加了一個例子。兩個複選框元素位於文本輸入元素的左側。我想他們都齊平 – Mel 2014-09-24 07:12:59