element描述列表溢出隐藏不生效

// 不生效写法
.el-descriptions .el-descriptions-item__content {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
// 生效写法
.el-descriptions .el-descriptions-item__content {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

你可能感兴趣的:(Vue,前端,javascript,vue.js,elementui)