Search
 
SCRIPT & CODE EXAMPLE
 

CSS

text-overflow ellipsis multiple lines

p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
Comment

text overflow ellipsis two lines

display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
Comment

text-overflow: ellipsis; 2 line

display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
Comment

text-overflow: ellipsis 2 lines

display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
Comment

PREVIOUS NEXT
Code Example
Css :: reset submit input style 
Css :: input checkbox size 
Css :: make img black and white css 
Css :: blue outline after click when in mobile view 
Css :: google icon cdn 
Css :: increase the size of an image on hover using css 
Css :: css without underline 
Css :: smooth scroll to anchor 
Css :: css transition cross browser 
Css :: 100vh - 100px 
Css :: change color of bullet points css 
Css :: how to center a div in css 
Css :: how to add css in flask app 
Css :: center div horizontally and vertically 
Css :: display none css inline 
Css :: use a local font css 
Css :: css make long text wrap 
Css :: border: 1px solid black; 
Css :: scrollbar thumb height css 
Css :: add google font 
Css :: css focus outline none 
Css :: css box shadow right and down 
Css :: why tr border not showing 
Css :: mixin for transition css 
Css :: css cut off text 
Css :: css dynamic grid layout 
Css :: css remove list indent 
Css :: how to make white image black in css 
Css :: vertical-align table row 
Css :: css box-shadow 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =