## 自动换行 :::tip 当需要选择很多选项时, 横向滚动满足不了你的需求, 可以开启自动换行 ::: ### 开启换行 :::demo `autoRow` = `true` ```html
``` ::: ### Layui风格 前面的label居中 需要 **自行** 加一段css, 这里就没有内置到插件中了, 避免样式污染, 当前或许你有更好的css解决方案 ^_^ ```css .layui-form-pane .layui-form-label{ display: flex; align-items: center; justify-content: center; } ``` :::demo ```html ``` :::