Answers for "text overflow show dots css"

CSS
3

css add dots if text too long

text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
Posted by: Guest on April-29-2020
0

overflow dots css

.overflow-information{ 
    overflow: hidden;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
  	width:150px; //change based on when you want the dots to appear
}
Posted by: Guest on October-19-2020

Browse Popular Code Answers by Language