情景:
  vue+element,table里使用v-html 内容是带标签<p> 可用以下方法使解决。
不影响提示框:
 <el-table-column :show-overflow-tooltip="true" label="内容" align="center">
        <template slot-scope="scope">
          <div class="table-td-cell" v-html="scope.row.content" />
        </template>
      </el-table-column>


.table-td-cell{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  } 

 

相关文章:

  • 2022-12-23
  • 2021-11-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-02
  • 2021-08-13
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案