overflow: hidden;
с фиксированным heightdocument.getElementById('strlochka').onclick = function () {
const green = document.getElementById('green');
green.style.overflow = 'auto';
green.style.height = 'auto';
}
.parent .block:nth-child(2) ~ .block{
display: none
}
.parent.active .block:nth-child(2) ~ .block{
display: block
}
// jQuery
$('.button').on('click', function(){
$('.parent').addClass('active');
});
// или не jQuery
document.querySelector('.button').addEventListener('click', function(){
document.querySelector('.parent').classList.add('active');
});
// я не сумасшедший.