![]() |
[HTML] In Tabellenzelle scrollen
Hallo allerseits,
ich wuerde gerne den Inhalt einer Tabellenzelle scrollen lassen. Ich habe schon folgenden Code versucht:
Code:
Statt den drei Punkten stehen noch jede Menge "
<table border="0" cellspacing="0" cellpadding="0">
<tr style="height:200;"> <td style="overflow:scroll;"> ... Should scroll vertically ... At least now </td> </tr> </table> ". Trotz dem Code sehe ich aber keine Scrollbar, sondern die Tabelle wird gestreckt. Weiss jemand wie ich dieses Problem am besten loesen koennte? Ich will dabei aber nicht auf frames/iframes zurueckgreifen... Greetz alcaeus |
Re: [HTML] In Tabellenzelle scrollen
Code:
<table border="0" cellpadding="0" cellspacing="0">
<tr> <td> <div style="height: 200px; width: 100%; overflow-y: scroll; white-space: nowrap;">Should scroll vertically ... At least now</div> </td> </tr> </table> |
Re: [HTML] In Tabellenzelle scrollen
Danke, ich werds heute Abend mal probieren
Greetz alcaeus |
Re: [HTML] In Tabellenzelle scrollen
Also, wie es Sprint schon hat, ein DIV, oder ähnliches in die Zelle(TD), denn mit der Tabellenzelle selber geht das nicht.
Code:
<td ...><div style="width:100%; height:100%; overflow:auto;">...</div></td>
oder <td ...><div style="width:100%; height:100%; overflow:scroll;">...</div></td> Mit overflow-x und overflow-y kannst du auch die Scrollbars einzeln steuern, allerdings "wollen" einige Browser dieses nicht verstehen Und overflow:auto hat den Vorteil, dass nur 'ne Scrollbar angezeigt wird, wenn sie benötigt wird ; |
Re: [HTML] In Tabellenzelle scrollen
Danke euch allen, mit dem div funktionierts jetzt :)
Greetz alcaeus |
Alle Zeitangaben in WEZ +1. Es ist jetzt 09:56 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz