How to identify Ellipsis is being applied so that some links(more) can be suffixed to toggle the ellipsis.
Is there any was to detect the ellipsis is being applied using CSS or Javascript. Here i need to apply the ellipsis after three lines. The CSS below:
.test-ellipsis {
color: #6f6f6f;
font-size: 12px;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}