.proposal p{
font-size: 14px;
color: #494949;
margin-bottom: 15px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
line-height: 20px;
max-height: 100px;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
}
.proposal:hover p{
overflow: visible;
display: inline-block;
}
Utilizing a hover effect on a paragraph allows the hidden content to be revealed, but how can we ensure that the animation is seamless?