DEV Community

nguyenphuongduy124
nguyenphuongduy124

Posted on

Limit lines of a block element HTML

.text{
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
line-height: 16px;

max-height: 32px;

-webkit-line-clamp: 2; /* Write the number of
lines you want to be
displayed */
-webkit-box-orient: vertical;
}

Top comments (0)