Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

word ellipsis css

p,span,label{ // on child
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  width:10px;
}
div{
    white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width:100%;
}
 
PREVIOUS NEXT
Tagged: #word #ellipsis #css
ADD COMMENT
Topic
Name
6+5 =