Scrollfähige Tabelle

Status
Nicht offen für weitere Antworten.

Desperant

Grünschnabel
mmm, ähnliche Frage oder doch ..na ja egal. Also:

ich habe festgestellt wenn ich auf der Seite zwei "div-Bereiche" habe und obere
"overflow:hidden" und unteren auf "overflow: auto" setze, reagiert der obere div-Bereich nicht mehr....als würde er von dem zweitem div aufgelößt?

Gibts da eine alternative oder eine Lösung?

Beispiel:

<div style="height:300; width:220; overflow:hidden;">
<table>
<div style="height:300; width:220; overflow:auto;">
<table>
xxxx
</table>
</div>

</table>
<div>
 
Probiere es mal so:

HTML:
<div style="height:300px; width:220px; overflow:hidden;">
     <div style="height:300px; width:220px; overflow:auto;">
     <table>
       <tr>
           <td>
               <p>Text zum scrollen</p>
               <p>Text zum scrollen</p>
               <p>Text zum scrollen</p>
               <p>Text zum scrollen</p>
               <p>Text zum scrollen</p>
               <p>Text zum scrollen</p>
               <p>Text zum scrollen</p>
               <p>Text zum scrollen</p>
               <p>Text zum scrollen</p>
               <p>Text zum scrollen</p>
               <p>Text zum scrollen</p>
               <p>Text zum scrollen</p>
               <p>Text zum scrollen</p>
               <p>Text zum scrollen</p>
           </td>
       </tr>
     </table>
     </div>
</div>
 
Status
Nicht offen für weitere Antworten.
Zurück