文本溢出省略号显示

时间:2022-01-29 10:29:34

1.文本不换行 white-space:nowrap;

2.文本溢出隐藏 overflow:hidden;

3.文字溢出省略号显示 text-overflow:ellipsis;

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>处理空白符</title>
    <style type="text/css">
        p{
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    </style>
</head>
<body>
    <p>段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落</p>
</body>
</html>