el-checkbox 设置为块级元素或内联块级元素,这样它们就会默认换行显示。但这种方法可能需要你为每个 el-checkbox 添加自定义的 CSS 类。 使用Flexbox 的 flex-wrap 属性: 如果el-checkbox-group 的父容器是一个 flex 容器,你可以通过设置 flex-wrap: wrap 来允许子元素换行。
文字超出换行 /deep/.el-checkbox__label{word-break:normal;width:auto;display:inline-grid;white-space:pre-line;word-wrap:break-word;overflow:hidden;line-height:14px;} 一行显示一项 /deep/ .el-checkbox { width: 100%; margin-top: 20px; } 表格里的多选框 // 多选/deep/.el-checkbox__inner{...