<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
/* p{
width: 40px;
overflow: hidden;
text-overflow:clip;
white-space:nowrap;
}*/
p{
width: 100px;
overflow: hidden;
text-overflow:ellipsis;
white-space:nowrap;
}
</style>
</head>
<body>
<!-- text-overflow:clip对文本进行裁剪 -->
<!-- text-overflow:ellipsis用省略号代表多出的文本 -->
<p>
这是一段文本,这是一段文本,这是一段文本,
</p>
</body>
</html>
网友评论