i dont want the input box to flow out of div when browser resize.
can you share the codepen?
@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