scrolling column in a table

  • Thread starter Thread starter Mel
  • Start date Start date
M

Mel

I have a table with 2 columns (the left hand column is 80% width and
the other at 20% width) in a content section. I want the column on
the right hand side to scroll; it contains a bulleted list. When I
add a bunch of bulleted items to the column it just makes my web page
taller. How can I get the column to scroll?

- Mel
 
use a div

<div style="overflow:auto;height:400px;">
some content
</div>


note: you must specify an absolute height. if you want it to resize to
page size use javascript and the resize event.

-- bruce (sqlwork.com)
 
use a div

<div style="overflow:auto;height:400px;">
some content
</div>

note: you must specify an absolute height. if you want it to resize to
page size use javascript and the resize event.

-- bruce (sqlwork.com)

Thanks! I didn't set the <div> height so that was the problem. Thank
you, thank you! I think I love you; I'm totally serious!
 
use a div

<div style="overflow:auto;height:400px;">
some content
</div>

note: you must specify an absolute height. if you want it to resize to
page size use javascript and the resize event.

-- bruce (sqlwork.com)

Thanks! I didn't set the <div> height so that was the problem. Thank
you, thank you! I think I love you; I'm totally serious!
 
Back
Top