I'm trying to add [read more] button to multiple line ellipsis layer.
<p class="description">this is long text.this is long text. <button type="button">expand</button></p>
.description {
width: 300px;
text-overflow: ellipsis;
display: -webkit-box;
overflow: hidden;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
}
.description button {
margin: 0; padding: 0 0 0 10px;
background-color: transparent; border-width: 0; outline-width: 0;
font-size: 14px; color: #3f8f7b;
}
https://jsfiddle.net/redhork7/symuzrmt/
the result should be like,
this is long text.this is long text.this is long text.this is long text.
this is long text.this is long text.this is long text.this is long text.
this is long text.this is long text.this is long text... [more button]
is it possible?