i am using text-overflow: ellipsis to make max number of lines in my container article. It works fine but limit start after 1 line and i need to set it on more. (like 3-4) problem is how ever i try it it move everything in my article container away or made no change.
I am new in CSS so i am prolly doing something wrong, can u help me with that?
DEMOs: Fiddle LIVE WEBSITE
Part of CSS with ellipsis (full CSS / HTML can be found on demos above):
#article-container p {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: 168px;
}
#article-container p.more {
overflow: hidden;
padding: 0;
white-space: normal;
width: auto;
}
So guys is here anyone who can help me to set it to limit more lines not just one?
Thanks for reading this post