自Chrome v78.0.3904.70发布以来,我发现
CSS属性的使用存在问题white-space: nowrap;
。不间断的空格似乎导致换行。使用时text-overflow: ellipsis
,实际文本将不会显示,因为它在容器外部被打断了。似乎只有在文本太长而无法显示时才会发生。
.box-inline {
max-width: 120px;
overflow: hidden;
height: 16px;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
white-space: nowrap;
}
<div class="mar-rgt box-inline text-sm"><span class="label" style="background: rgb(176, 223, 246);"></span> Not meeting expecations</div>
它在我们的应用程序上引起了一些显示问题。这是错误还是我的代码有问题?
该代码在React 16中呈现。
Chrome 78.0.3904.87已发布,我无法重现此问题(尝试了您的摘录)。你能告诉我吗?
—
Syed Aqeel Ashiq,