Hi, in the blog list page, i want to limit the text to display in each blog post here. It can be easily done with post with TEXT ONLY content with css like this:
.post-body-list { height: 300px; text-overflow: ellipsis; overflow: hidden;}
However, sometime the post content can also contain html elements like <p>, <div> etc ( user can copy the content of other website and paste them to thier blog post). Is there a way to limit the text to display in this case?