Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

how to show ... after some long chars js html h1

/*Css*/

.text {
  display: block;
  width: 100px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* html */
<span class="text">Hello world this is a long sentence</span>
 
PREVIOUS NEXT
Tagged: #show #long #chars #js #html
ADD COMMENT
Topic
Name
1+8 =