[CSS3] Text ellipsis

Link: http://www.w3schools.com/cssref/tryit.asp?filename=trycss3_text-overflow

 

div{
        white-space: nowrap;
        text-overflow: ellipsis; 
}

 

.truncate {
  width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

 

posted @ 2016-05-09 16:51  Zhentiw  阅读(257)  评论(0)    收藏  举报