欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

bootstrap + simple_form 的 check_boxes inline样式

程序员文章站 2022-07-15 11:54:36
...

使用simple_form默认的bootstrap wrapper,默认输出的check_boxes是竖排,要想改成横排,需要在checkbox表单之外的label加上inline样式。使用 :item_wrapper_class => :inline 即可。如下:

 

<%= f.association :roles, :as => :check_boxes, :item_wrapper_class => :inline %>

 

我在simple_form的github页面上居然没找到 :item_wrapper_class 这个东西,google之后发现simple_form的github的讨论页面 https://github.com/plataformatec/simple_form/issues/479有人提到。记录在此免得以后忘了。