This commit is contained in:
2023-05-01 19:37:40 +08:00
commit da2c0fadf7
133 changed files with 29002 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width-device-width,initial-scale=1.0">
<title>文本溢出隐藏 </title>
<style>
p {
color: sandybrown;
/* 文本溢出隐藏 */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
</style>
</head>
<body>
<p>
人之初,性本善,性相近,习相远。
苟不教,性乃迁。教之道,贵以专。
人之初,性本善,性相近,习相远。
苟不教,性乃迁。教之道,贵以专。
人之初,性本善,性相近,习相远。
苟不教,性乃迁。教之道,贵以专。
</p>
</body>
</html>