CSS
- 12 ответов
- 0 вопросов
4
Вклад в тег
const contentFilter = document.querySelectorAll('.sidebar-accardion__item .content-filter');
contentFilter.forEach(item => {
if (item.clientHeight > 220) {
item.style.maxHeight = "220px";
item.style.overflowY = "scroll";
} else {
item.style.maxHeight = "fill-content";
item.style.overflowY = "auto";
}
});