如何让div中的文字只显示一行,多余的文字隐藏并加上省略号
3个回答
展开全部
1
2
3
4
5
6
7
8
9
10
11
12
/*一行表示**/
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
/***2行表示**/
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
word-wrap: break-word;
white-space: normal !important;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
2
3
4
5
6
7
8
9
10
11
12
/*一行表示**/
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
/***2行表示**/
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
word-wrap: break-word;
white-space: normal !important;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
引用凯帝尧伯的回答:
1
2
3
4
5
6
7
8
9
10
11
12
/*一行表示**/
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
/***2行表示**/
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
word-wrap: break-word;
white-space: normal !important;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
1
2
3
4
5
6
7
8
9
10
11
12
/*一行表示**/
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
/***2行表示**/
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
word-wrap: break-word;
white-space: normal !important;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
展开全部
overflow: hidden;
text-overflow: ellipsis;
white-space:nowrap;
text-overflow: ellipsis;
white-space:nowrap;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
max-width:100px;//限制长度,如果上面的不行的话加上这句试试
如果是表格需要在td里面加
white-space: nowrap;
text-overflow: ellipsis;
max-width:100px;//限制长度,如果上面的不行的话加上这句试试
如果是表格需要在td里面加
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询