After creating an ASP page to showcase events, I decided to limit the content displayed in each item template to three lines using CSS.
Now, I am looking to add three periods after the text to signify that there is more content available.
I tried using .after{content:"..."}
as a solution found online, but the dots ended up on a new line and not inline as I wanted based on the image reference.
Below is a snippet of my CSS:
.eventDescription
{
height: 45px;
margin-left: 65px;
font-size: 15px;
line-height: 1.5em;
overflow: hidden;
text-align: justify;
line-height: 15px;
padding-top: 10px;
width: 220px;
}