Hello I write in es6 module to set in all elements (.product-category__item
) the same height but I can't get any height :/
var measureElements = document.querySelectorAll('.product-category__item');
for(let item of measureElements) {
console.log(item.style.height) // return nothing
}