ellipsis隐藏超出部分

251 阅读1分钟

请观赏

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .pp{
            border: 1px solid red;
            width: 200px;
            height: 60px;
            overflow: hidden;
            white-space: nowrap;  //不换行
            text-overflow: ellipsis;
        }
    </style>
</head>
<body>
        <p class="pp">我是你的觉得十分简单说两句哦阿姐的进攻苏联法国德国的公司发了简历</p>
</body>
</html>