Answers for "show max word with css"

CSS
1

show max word with css

p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 75ch;
}
Posted by: Guest on June-30-2021

Browse Popular Code Answers by Language