white-space: nowrap; and flexbox did not work in chrome

前端 未结 3 1711
孤独总比滥情好
孤独总比滥情好 2021-02-13 05:41

Recent update of Chrome breaks white-space: nowrap using text-overflow: ellipsis; on a overflow: hidden element. How to fix that without a

3条回答
  •  忘掉有多难
    2021-02-13 06:31

    text-overflow: ellipsis is work with the width property

    .lastname { 
      width: 525px;
      flex-grow: 1;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
    }
    

提交回复
热议问题