element select内容溢出显示点且不换行

element select内容溢出显示点且不换行_第1张图片

   .el-select__tags {
      flex-wrap: nowrap;
      overflow: hidden;
  }
  .el-select__tags-text{
      display:inline-block;
      max-width:100px;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
  }
  .el-tag .el-icon-close{
    margin-bottom: 8px;
  }

你可能感兴趣的:(element)