Код: Выделить всё
const chooseDate = document.getElementById("choose-date");
chooseDate.addEventListener("click", () => {
document.getElementById("date").classList.remove("hidden");
});
Код: Выделить всё
body {
background-color: rgb(143, 134, 134);
}
input,
select {
position: absolute;
left: 50%;
bottom: 50%;
height: 40px;
font-size: 20px;
border-radius: 20px;
}
input {
bottom: 45%;
display: none;
}
Код: Выделить всё
today
tomorrow
choose-date
Подробнее здесь: https://stackoverflow.com/questions/786 ... on-element