1. Hidden line
<div class="text">After all, the end of the old calendar is the most like the end of the village, needless to say, in the sky will also show the weather to the New Year.</div>
Copy the code
.text {
    width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space:nowrap;
}
Copy the code
  1. Multi-line hidden
<div class="text">There were flashes of light from time to time among the heavy grey evening clouds, followed by a dull thud of firecrackers for the kitchen; Near the discharge can be more intense, the big sound of the ears have not rest, the air has been scattered full of subtle gunpowder incense. I was on this night back to my hometown lu town. Although hometown, however has no home, so had to temporarily house in lu four master's house. He is my original family, older than me, should be called "uncle four", is a talk about neo-confucianism old supervisor. He did not change much than before, but he was older, but he had not yet grown a beard. When we met, we exchanged pleasantries. After exchanging pleasantries, he said that I was "fat", and after saying that I was "fat", he denounced his new party. But I know, this is not borrow the title in scold me: because he scold or Kang Youwei. However, the conversation is always not speculative, so soon, I was left alone in the study.</div>
Copy the code
.text {
    width: 100px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3; / / from the first3Line begins to hide}Copy the code