subasj0
#1
after adding
.section {
max-width: 600px;
margin: 0 auto;
height: 100vh;
background: white;
position: relative;
display: flex;
flex-direction: column;
}
to my css. I’m not able to listen click on any child of ‘.section’ element but when i remove “height: 100vh”, all works perfectly…
snigo
#2
I hardly believe height: 100vh;
has something to do with it, could you post your actual event listener function or link to REPL?
subasj0
#3
The position: absolute
to the child of the element was causing problem…Solved