Style Rails collection_check_boxes

后端 未结 2 495
旧时难觅i
旧时难觅i 2021-02-04 11:40

I been trying to apply some CSS classes to collection_check_boxes but I can\'t get it to work. Right now I doing this:

<
2条回答
  •  花落未央
    2021-02-04 12:14

    A little shorter to use an inline block

    <%= f.collection_check_boxes(:brand_ids, Brand.all, :id, :name) do |b| %>
      <%= b.label(class:"label-checkbox") { b.check_box + b.text } %>
    <% end %>
    

提交回复
热议问题