Thread: Scrollbar in a cell in a table?
Results 1 to 7 of 7
Related
-
Vertical Scrollbar within a cell of a table? Forum: HTML Forum
Replies: 4 -
Scroll bar in table cell help Forum: HTML Forum
Replies: 14 -
Hyperlink table cell Forum: HTML Forum
Replies: 11 -
table - cell hyperlinking Forum: HTML Forum
Replies: 3
-
11-25-2008, 07:08 PM #1
Scrollbar in a cell in a table?
Can I put a scroll-bar in just one cell in a table?
-
11-25-2008, 08:55 PM #2
Re: Scrollbar in a cell in a table?
Hope this basic example helps:
HTML Code:<style type="text/css"> .scroll{ width:80px; height:80px; overflow:auto; } </style> <table> <tr> <td>Cell Entry</td> <td>Cell Entry</td> <td>Cell Entry</td> <td>Cell Entry</td> <td> <div class="scroll"> Cell Entry Cell Entry Cell Entry Cell Entry Cell Entry Cell Entry </div> </td> </tr> <tr> <td> <div class="scroll"> Cell Entry Cell Entry Cell Entry Cell Entry Cell Entry Cell Entry </div> </td> <td>Cell Entry</td> <td>Cell Entry</td> <td>Cell Entry</td> <td>Cell Entry</td> </tr> </table>
Checkout my porfolio.
Please click thebutton when a member helped you.
Take time to use Forum's Search function.
-
11-25-2008, 08:57 PM #3
Re: Scrollbar in a cell in a table?
That does help, but does it still work if I have not a page, but one big table?
-
11-25-2008, 09:08 PM #4
Re: Scrollbar in a cell in a table?
Come again. I don't think I understand you on that.
Checkout my porfolio.
Please click thebutton when a member helped you.
Take time to use Forum's Search function.
-
11-25-2008, 09:12 PM #5
Re: Scrollbar in a cell in a table?
Instead of a whole HTML page, what if I made everything just ONE BIG table? Stretched over the whole page? How would I get a scroll-bar into just one cell. Sorry, but I'm not that used to scroll-brs...
-
11-25-2008, 09:33 PM #6
Re: Scrollbar in a cell in a table?
Use the same technique. Use the overflow property and set its value to auto.
Checkout my porfolio.
Please click thebutton when a member helped you.
Take time to use Forum's Search function.
-
11-25-2008, 10:08 PM #7
Re: Scrollbar in a cell in a table?
thanks.
Cloudjiffy- PaaS for Developers
10-05-2020, 12:30 AM in Web Hosting Forum