省略号

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<style>
p{
100px;
height: 100px;
border: 1px solid #000;
/* 文字不换行 */
white-space: nowrap;
/* 想要省略号这个必须加上 */
overflow: hidden;
/* 省略号 */
text-overflow:ellipsis;
}
</style>
</head>
<body>
<p>
达克罗宁反馈放到了 发的那个接口你赶紧就
</p>
</body>
</html>

原文地址:https://www.cnblogs.com/niuniuniu/p/6409045.html