You need to apply Css to the div or span at the same time:
text-overflow:ellipsis;
white-space:nowrap;
overflow:hidden;
can achieve the desired overflow text display ellipsis effect.
Of course, your page elements must set a fixed width, and they will not be displayed until the width is exceeded.