<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>HelloWorld</title>
<style>
* {
padding: 0;
margin: 0;
}
li {
width: 240px;
height: 30px;
border: 1px solid red;
margin: 5px;
font-size: 16px;
/* white-space overflow text-overflow 缺一不可 */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
</style>
</head>
<body>
<div>
<ul>
<li>文本内容文本内容文本内容文本内容文本内容</li>
<li>文本内容文本内容文本内容文本内容文本内容</li>
</ul>
</div>
</body>
</html>
html-文本超出范围以省略号显示
最新推荐文章于 2025-06-10 12:41:12 发布