Код: Выделить всё
cart_checkbox_label = document.querySelectorAll('.cart_checkbox_label');
select_cart_drop = document.querySelectorAll('.select_cart_drop');
for (let i = 0; i < cart_checkbox_label.length; i++) {
cart_checkbox_label[i].addEventListener("click", () => select_cart_drop[i].style.display = "flex";)
}< /code>
.select_cart {
display: flex;
position: relative;
width: 70%;
border: 1px solid lightgray;
}
.select_cart_drop {
position: absolute;
*/display: none;
/*
flex-direction: column;
top: 0;
left: 0;
width: 100%;
z-index: 1;
}< /code>
Quantité :
0 (supprimer)
1
2
3
4
5
6
7
8
9
10 +
Подробнее здесь: https://stackoverflow.com/questions/795 ... take-space