Answers for "css three dots on text"

CSS
7

three dots in css

span {
    display: inline-block;
    width: 180px;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
}
Posted by: Guest on May-26-2020
0

html long text three dots

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

Browse Popular Code Answers by Language