项目场景: 就是一个超出隐藏,只不过是在element的表格中而已

解决方案:

  1. 首先超出隐藏,无非就是几行代码而已
overflow:hidden; //超出的文本隐藏
text-overflow:ellipsis; //溢出用省略号显示
white-space:nowrap; //溢出不换行

但是他的前提是,你得设定宽度
在这里插入图片描述

下面开始说正题

这个地方为什么换行,应为他设置的是默认值
white-space: normal; // 换行
我们给他设置成 nowrap 不就不换行了

在这里插入图片描述

可以在全局css设置,也可以在单文件使用/deep/ 来设置

全局
.el-table .cell {
    white-space: nowrap;
}

局部

/deep/ .el-table {
.cell {
    white-space: nowrap;
}
} 

效果
在这里插入图片描述

GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:2 个月前 )
c345bb45 6 个月前
a07f3a59 * Update transition.md * Update table.md * Update transition.md * Update table.md * Update transition.md * Update table.md * Update table.md * Update transition.md * Update popover.md 7 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐