Shoutbox

Tables Overflow Help - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Tech Talk (/forumdisplay.php?fid=17)
+----- Thread: Tables Overflow Help (/showthread.php?tid=55120)

Tables Overflow Help by Stigmata on 01-21-2006 at 12:50 PM

Got a left column and then the main bit where all teh info is stored..

i need the main bit to have scroll bars..

code:
<table width="98%" height="200" border="1">
  <tr>
    <td width="24%" valign="top">Left Column</td>
    <td name="main" width="100%" height="200" align="left" valign="top" style="overflow: auto;"> test
    test<br />
    test<br />
    test<br />
    test<br />
    test<br />
    test<br />
    test<br />
    test<br />
    test<br />
    test<br />
    test<br />
    test</td>
  </tr>
</table>

the test bit just keeps on going with no scroll...

ive tried using div tags... but with no success :(
RE: Tables Overflow Help by Volv on 01-21-2006 at 12:55 PM

code:
<table width="98%" height="200" border="1">
  <tr>
    <td width="24%" valign="top">Left Column</td>
    <td name="main" width="100%" height="200" align="left" valign="top" style="overflow: auto;">
      <div align="left" style="height: 200px; overflow: scroll;">
test<br />
test<br />
test<br />
test<br />
test<br />
test<br />
test<br />
test<br />
test<br />
test<br />
test<br />
test<br />
test
      </div>
    </td>
  </tr>
</table>

RE: Tables Overflow Help by Stigmata on 01-21-2006 at 01:05 PM

grrrrr stupid dreamweaver...

works fine when i put it in a browser...


thanks :D


RE: Tables Overflow Help by user27089 on 01-21-2006 at 01:44 PM

quote:
Originally posted by Stigmata
grrrrr stupid dreamweaver...

works fine when i put it in a browser...


thanks :D

Dreamweaver does that a lot, don't look at your site using the preview area of dreamweaver, open up the .htm files to see, I had the same problem when I used to use dreamweaver for every site I made.