Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] CSS form won't submit in IE7 Reply To: [Solved] CSS form won't submit in IE7

#158615
alexmccabe
Participant

CSS won’t block a button from submitting unless it happens to be hidden underneath another element. Try removing all the styles from the form to see if it submits and works then.

If it doesn’t then you clearly have a non-CSS coding problem.

Also, the form will NOT submit on CodePen. All form submit requests are blocked there.

As well as this, try using the more standard <input type="submit"/> for the button instead of <button>. This won’t change the way the code works, it is just better practice.