css3 single text overflow, multi-line text overflow

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        .box{
            width:200px;
        }
        .item{
            overflow:hidden;
            text-overflow:ellipsis;
            white-space:nowrap;
        } 
        .Mul-Item { 
            overflow : hidden ; 
            text-overflow : ellipsis ; 
            the display : -webkit-Box ; 
            -webkit-Line-CLAMP : 2 ; 
            -webkit-Box-Orient : Vertical ; 

        } 
    </ style > 
</ head > 
< body > 
< div class = "Box" > 
    < the p- class = "Item" > advise you to enter a glass of wine, West of Yang Guan people for no reason. "Cold Moon shines, the autumn wind blows, falling maple leaves in Xunyang river head</ P > 
</ div > 

< div class = "Box" > 
    < P class = "MUL-Item" > searching, desolate, desolately sad. "Poetic feelings Qingzhao, but the rhyme there is more love Song of Qingzhao not only has a" back door in accordance with, yet the green plum sniffing. "Feminine charm; she still has" Still thinking Xiang Yu refused to have Koto. "Free and easy bold </ P > 
</ div > 

</ body > 
< Script > 

</ Script > 
</ HTML >

 

Guess you like

Origin www.cnblogs.com/qianxunpu/p/11137182.html