Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css clip text

div.a {
  white-space: nowrap; 
  width: 100px; 
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px solid #000000;
}

/*or==============*/ 

p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*/this will show text like this 
This is some long text........*/
 
PREVIOUS NEXT
Tagged: #css #clip #text
ADD COMMENT
Topic
Name
1+8 =