I have a comment box like so...
<div id="comments">
...
</div>
Now, inside this comments div I have another div called box...
<div id="comments">
<div id="box">
...
</div>
</div>
The box div is position: fixed and it works mostly fine, but...
What I would like is, instead of the box div "floating" above all the content, for it to be only scrollable within the comment div.
Do i need to use JavaScript for this?