【发布时间】:2018-02-01 07:36:43
【问题描述】:
我正在尝试为文本溢出添加省略号:
父母:
.grid-row {
display: flex;
}
孩子:
.grid-cell {
display: flex;
flex-grow: 3;
flex-basis: 0;
align-items: center;
padding: 10px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.grid-cell:first-child {
flex-grow: 1;
justify-content: center;
}
而且,overflow 是 hidden,但没有任何省略号。
【问题讨论】:
-
许多 flexbox / 省略号帖子。 these 之一可能会有所帮助(并且是重复的)..
-
没有HTML,问题无法重现。