Can anyone help me with this

Screenshot%20(59)

i dont want the input box to flow out of div when browser resize.

can you share the codepen?

https://codepen.io/Nani5032/pen/WNeLvrw

@Nani5032 add this to the bottom of your css

@media (max-width: 600px){
  #survey-form {
    width: 100%;
  }
  #name, #email, #text, #dropdown{
    width:90%;
  }
}
  

let me know if this helps mate

@biscuitmanz Thanks mate, now it looks good

1 Like