Answers for "html long text three dots"

0

add three dots to text css

#content{
overflow: hidden;
width:100px;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
}
Posted by: Guest on June-29-2021
0

html long text three dots

.text-truncate 
{    max-width: 15rem;
    overflow: hidden;
    text-overflow: ellipsis;
}
Posted by: Guest on October-18-2021

Code answers related to "html long text three dots"

Browse Popular Code Answers by Language