我正在使用simple_form创建一个显示一堆复选框的表单。这些复选框来自“关联”(即从数据库中提取:它们的数量可以变化)。
Simple_form以列格式输出它们(每行一个)。我想将它们分配到3列(每行3列,很好地对齐)。
这是我的代码:
<%= simple_form_for @user_profile, url: wizard_path, method: :put do |f| %>
<%= f.association :yoga_styles, as: :check_boxes, label: false%>
</BR>
<%= f.button :submit, "Continue" %>
<% end %>
我在Rails 4.2.3和Bootstrap 3上。