Striping the characters in paragarph in Cards

I want to limit the number of characters here in the paragraph so that the card size should not increase if someone adds a big paragraph. How can I do that?

@Tariq

You can achieve this with CSS. Inside custom CSS for that P tag, paste following:

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

Thanks. Issue resolved.