1.overflow-information{
2 overflow: hidden;
3 display: inline-block;
4 text-overflow: ellipsis;
5 white-space: nowrap;
6 width:150px; //change based on when you want the dots to appear
7}
1#content{
2 overflow: hidden;
3 width:100px;
4 display: -webkit-box;
5 -webkit-line-clamp: 3;
6 -webkit-box-orient: vertical;
7}