Skip to main content

HTML Guide

Start tag “button” seen but an element of the same type was already open.

A <button> tag can’t include other <button> tags inside. Most probable cause is an unclosed <button> tag, like in this example:

<button>Submit
<button>Cancel</button>

Related W3C validator issues