简单表单为复选框提供了一个类

时间:2016-02-05 18:06:59

标签: css ruby-on-rails

这是我的代码

<%= simple_form_for [current_employee, @preference] do |f|%>
  <%= f.association :jobterms,   as: :check_boxes, label: false%>
<% end %>

它会生成此HTML

<span class="checkbox">
  <label for="preference_jobterm_ids_1">
    <input class="check_boxes optional" type="checkbox" value="1" name="preference[jobterm_ids][]" id="preference_jobterm_ids_1">
    "Employee"
  </label>
</span>

是否可以给&#34;员工&#34;生成文本周围的类?

我试图让复选框看起来像一个按钮,因此使用标签访问文本也会影响我的边框样式。

enter image description here

0 个答案:

没有答案