I have this:
<div class="one">
<h2>Title that can be quite long and I don't know it's height</h2>
<div class="two">Content that can overflow and that needs to be scrolled (but the title needs to remain up so that won't scroll</div>
</div>
And this CSS:
.one{height: 250px; width: 120px;}
.two{overflow:auto;}
But I can’t get .two to do the scroll. I don’t know the height of .two or h2. Also I only want .two to do the scroll.
I’ve made the http://jsfiddle.net/zm8Lj/ for you. Please take a look.