I use the .animate() function:
$('.more_text').click(function(e) { e.preventDefault() var text = $(this).siblings('.why-i-cont-txt-body'); text.animate({ // width: 400, height:'100%', opacity: 1 }, 2000); }); At the same time in block styles:
.txt-body-more { max-height: 300px; overflow: hidden; } It is necessary to change the max-height to 100% , while my block opens abruptly, but there is no smoothness.