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

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


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下拉选框多选超出解决办法)