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

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

请先登录再写评论。