scroll bar within table?

liunx

Guest
Much like the one in the reply box, I was wondering what the codes were to place a scrollbar in a table cell so that it shows what's viewable, but once scrolling down it reveals the other stuff (not changing the overall look of the page though). Sorry if this is worded badly, but I don't know of any other way to say it. If it's not an HTML command please let me know. Thank you.<!--content-->Put a <div> inside the table cell, with a height and width set, and then set the overflow to auto, something like this:<br />
<br />
<div style="height:200px; width:400px; overflow:auto;">Your text here</div><!--content-->but what if you want to put it in a <td> section because the website is one big table, with <td> in it to seperate the website at different places and u only want the scrollbar for one td...i tried almost everything and it still isn't working..plz email me at <!-- e --><a href="mailto:[email protected]">[email protected]</a><!-- e --><br />
im still working on my website but the main layout is that: <!-- m --><a class="postlink" href="http://lebanonlinks.bravehost.com/index.html">http://lebanonlinks.bravehost.com/index.html</a><!-- m --><br />
<br />
and i want to put a scrollbar where i have written "main content here"<!--content-->I see scrollbars for that "main content" stuff.<!--content-->Are there any cross browser (IE) rendering problems using this code? I have:<br />
<td><br />
<div style="height: 75px; width:100%; overflow:auto;"><br />
<!-- CONTENT --><br />
</div><br />
</td><br />
Thanks,<br />
-Mike<!--content-->i tried this but i have my own html code for a scrollbar that i customized...but i want to put it in a <td> section of the table n it wont seem to work unless i use a textbox which i dont wanna use<!--content-->
 
Back
Top