首页 |  我的博客 |  查看该博主内容分类 | 

el-radio或el-checkbox内容过长超出未换行的解决办法(原创)

解决办法

  • 在el-radio或el-checkbox上添加属性(给标签设置一个class):
display: flex;  /* 用于对齐文本 */
  • 在el-radio或el-checkbox的选项标签上添加属性:
/deep/ .el-radio__label{
	white-space: normal;  /* 换行 */
}

/deep/ .el-checkbox__label{
	white-space: normal;  /* 换行 */
}
posted @ 2023-10-31 11:41  Z哎呀  阅读(3558)  评论(0)    收藏  举报