SnappySnippet icon indicating copy to clipboard operation
SnappySnippet copied to clipboard

Elements inside a button get placed after the button in the generated html

Open mdatsev opened this issue 2 years ago • 0 comments

HTML in the page:

<button>
  <div>test123</div>
</button>

HTML generated by SnappySnippet:

<button id="BUTTON_1">
</button>
<div id="DIV_2">
	test123
</div>

mdatsev avatar May 21 '22 02:05 mdatsev