Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

truncate text line clamp

<p>Super duper long, super duper line of text<p>

<style>
	p {
     display: -webkit-box;
     overflow: hidden;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 1;
    }
</style>
Source by nikitahl.com #
 
PREVIOUS NEXT
Tagged: #truncate #text #line #clamp
ADD COMMENT
Topic
Name
2+9 =