Bildlaufleiste in Tabelle

Status
Nicht offen für weitere Antworten.
Beispiel für eine scrollfähige Tabellenzelle:

Code:
td.scroll
{
height: 200px;
}

div.scrollContent
{
overflow: auto;
height: 200px;
}
HTML:
<td class="scroll">
  <div class="scrollContent"> <!-- scrollfähiger Inhalt --> </div>
</td>
 
Status
Nicht offen für weitere Antworten.
Zurück