Home >Web Front-end >HTML Tutorial >css style display ellipsis_html/css_WEB-ITnose
??
Use css style to display ellipsis, mark
.xx{
display: block;
width:200px;/*The definition of width, modify according to the situation*/
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
Rendering