Answers for "css three dots with text normal in two lines"

0

paragraph dots after 2 lines css

display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
Posted by: Guest on August-25-2021
-1

add three dots to text css

#content{
overflow: hidden;
width:100px;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
}
Posted by: Guest on June-29-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language