美文网首页
58、element-ui下拉选框多选超出解决办法

58、element-ui下拉选框多选超出解决办法

作者: 郑先森 | 来源:发表于2021-09-17 11:46 被阅读0次

多选后会出现以下样子,或者不换行但是超出当前容器,


image.png

可以用以下代码解决

.el-select .el-tag:nth-child(1) {
  max-width: 100px;
  overflow: hidden;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  white-space: nowrap;
}

相关文章

网友评论

      本文标题:58、element-ui下拉选框多选超出解决办法

      本文链接:https://www.haomeiwen.com/subject/qkbmiltx.html