Is there a way to extract the last sentence or word, or even the entire text displayed before the ellipsis in a container with limited height where the content is inside a p-tag with a long content using text ellipsis and overflow?
.grid-container > div > p {
text-align: left;
margin: 10px;
-ms-hyphens: auto;
-webkit-hyphens: auto;
hyphens: auto;
display: block; /* Fallback for non-webkit */
display: -webkit-box;
max-width: 700px;
max-height: 360px;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis-word;
}