<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div {
width: 150px;
height: 80px;
background-color: pink;
margin: 100px auto;
/* 这个单词的意思是如果文字显示不开自动换行 */
/* white-space: normal; */
/* 这个单词的意思是如果文字显示不开也必须强制一行内显示 */
white-space: nowrap;
/* 溢出的部分隐藏起来 */
overflow: hidden;
/* 文字溢出部分用省略号显示 */
text-overflow: ellipsis;
}
</style>
</head>
<body>
<div>
假如时光会倒流,世界上将会有一半的人会成功
</div>
</body>
</html>