Html Long Text Three Dots

html long text three dots
.text-truncate
{ max-width: 15rem;
overflow: hidden;
text-overflow: ellipsis;
}
add three dots to text css
#content{
overflow: hidden;
width:100px;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
}

Leave a Comment