Recent update of Chrome breaks white-space: nowrap using text-overflow: ellipsis; on a overflow: hidden element. How to fix that without a
white-space: nowrap
text-overflow: ellipsis;
overflow: hidden
text-overflow: ellipsis is work with the width property
text-overflow: ellipsis
width
.lastname { width: 525px; flex-grow: 1; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }