css一行显示不下用省略号

<!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>Document</title>
    <style>
        .box {
            width: 200px;
            height: 200px;
            background-color: pink;
            /* 下面三行为主要代码:强制一行显示、隐藏多余的、用省略号显示 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    </style>
</head>

<body>
    <div class="box">
        测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试
    </div>
</body>

</html>
 
原文地址:https://www.cnblogs.com/lyt520/p/15734136.html