SnappySnippet
SnappySnippet copied to clipboard
Elements inside a button get placed after the button in the generated html
HTML in the page:
<button>
<div>test123</div>
</button>
HTML generated by SnappySnippet:
<button id="BUTTON_1">
</button>
<div id="DIV_2">
test123
</div>