用省略号替代文字超出部分

css就能够处理这样的需求

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        p{
            width: 200px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow:ellipsis;
        }
    </style>
</head>

<body>
    <p>很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长</p>
</body>
</html>

猜你喜欢

转载自www.cnblogs.com/wuqiuxue/p/9065083.html