element的radio组件 选项过长换行
直接贴代码了:
::v-deep .el-radio__label {
width: 100% !important;
text-overflow: ellipsis;
white-space: normal;
line-height: 18px;
// word-wrap: break-word !important; 无效
}
如果是纯数字或者字母 还要再加一句
word-break:break-all;
直接贴代码了:
::v-deep .el-radio__label {
width: 100% !important;
text-overflow: ellipsis;
white-space: normal;
line-height: 18px;
// word-wrap: break-word !important; 无效
}
如果是纯数字或者字母 还要再加一句