What is the HTML code for a positioned scroll box?

Emma

New member
I'm coding a layout and I want to put a scroll/text box that has a specific size that I can place at a specific position on my layout (over the box).

I found the following HTML code which worked well except the text goes in one line but I want to limit it to a certain area:

<style>
#mytext { position: absolute; top: 0px; left: 0px; }
</style>

<div id="mytext">TEXT HERE</div>

Please help & find me the basic code. Thank you.
I need a code to be able to place the scroll box at a certain position on top of a certain image.

like.. i need to be able to edit:
1. position of the scroll box
2. size of the scroll box (length, width)
 
Back
Top