<div class="model-listing__list">
<span class="model-listing__list__item">Production countries:</span>
<span class="model-listing__list__param country js-read-more-content-descr">Germany, Poland, Belgium, Hungary, Austia,
Spain, United Kingdom, France, Germany, Poland, Belgium, Hungary, Austia, Spain, United Kingdom, France</span>
<div class="model-listing__list__more js-read-more-show-descr">Открыть</div>
<div class="model-listing__list__more js-read-more-hide-descr">Закрыть</div>
</div>
let lineClamp = (2 * 20)
$('.country').each(function (heightbl) {
var heightBlock = $(this).height();
if (lineClamp > heightBlock) {
$(this).css({
'height': '100%',
'overflow-y': 'visible',
'background': 'blue',
});
}
else {
$(this).css({
'height': lineClamp,
'overflow-y': 'hidden',
'background': 'green',
});
}
});
Как поставить условие, если города занимают две строчки то кнопки скрыть, если больше двух строк то кнопки видны