赞
踩
// 不生效写法
.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;
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。