Hi
I add a text using document.selection.createRange().
I want to add a text to the bottom of another text - similar to what we do in HTML.
<p>
xyz
</p>
<p><div style="position:relative;bottom:30px;">abc</div></p>
How can I achieve that using javascript?