vue v-html table里内容不换行 带省略号

情景:
  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;
  } 

 

上一篇:爬取Macy网用户评价日志(4): 报错总结。


下一篇:html最多显示两行,css 实现两行或多行文本溢出显示省略号(...)