Move HTML Tags Up / Down in hierarchy

Can I move HTML Tags Up / Down in hierarchy? I do this a lot.

make this:

<div>
<span>Foo</span>
</div>

into this:

<span>
<div>Foo</div>
</span>
0
1 comment

No; you can move <span> out of <div> with Code > Move Statement Up, but can't make the latter a child of the former

0

Please sign in to leave a comment.