美文网首页
3.12 (案例) text-overflow(省略号)

3.12 (案例) text-overflow(省略号)

作者: 柒月柒日晴7 | 来源:发表于2017-06-07 23:43 被阅读0次
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Document</title>
        <style>
        /*  p{
                width: 40px;
                overflow: hidden;
                text-overflow:clip;
                white-space:nowrap;
            }*/
            p{
                width: 100px;
                overflow: hidden;
                text-overflow:ellipsis;
                white-space:nowrap;
            }
        </style>
    </head>
    <body>
        <!-- text-overflow:clip对文本进行裁剪 -->
    <!--    text-overflow:ellipsis用省略号代表多出的文本 -->
        <p>
            这是一段文本,这是一段文本,这是一段文本,
        </p>
    
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:3.12 (案例) text-overflow(省略号)

          本文链接:https://www.haomeiwen.com/subject/fkqzfxtx.html