angular Read More Read Less Button code example
Example 1: how to implement read more and readless in angular
.show-less {
height: 4rem;
overflow: hidden;
padding: 1rem;
}
Example 2: how to implement read more and readless in angular
<div [ngClass]="{'show-less': showShortDesciption}">
<!-- Your Text Here -->
</div