vote up 0 vote down star
1

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?

flag
belongs on doctype – antony.trupe Oct 21 at 5:17
Could you expand on what you mean by "only scrollable within the comment div"? Also, "floating" means something very specific in CSS, and it's not what you mean. When you say "floating", are you refering to #box appearing in front of other content? – outis Oct 21 at 5:19
Sure, when you position: fixed an element, it does this: bluelounge.com/index.php (scroll down the page). I would like this functionality but only to happen within a div (not the entire page) - hope that makes sense – unknown (google) Oct 21 at 5:22
1  
@antony.trupe no, it doesn't. The community has spoken, SO is a perfectly valid place for HTML/CSS questions: meta.stackoverflow.com/questions/14637/… – TM Oct 21 at 5:25
1  
you could try doctype.com ; it really depends how much of your question is visual/pixels versus ascii/code. – Jeff Atwood Oct 21 at 5:27
show 1 more comment

2 Answers

vote up 1 vote down
<style>
    #comments { overflow: auto; height: 200px; }
</style>

<div id="comments">
   <div id="box">
       ...
   </div>
</div>

Give a suitable height for the container div ( comments ) and oveflow auto will make a scroll bar if the content exceeds the height of the container.

Overflow: the 'overflow' property

link|flag
vote up 2 vote down

You don't need JS for this. Simply add overflow:scroll and set the outer DIV to the fixed size. Then if internal DIV is larger than outer div you will see the scrollbar(s)

You can try it on this page

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.