Bonjour,
Mon problème est le suivant : j'ai un tableau dans Dreamweaver CS5 généré par un ensemble de données SPRY (Fichier XML).

J'ai donc écrit mon code pour afficher une barre de défilement verticale à la droite du contenu de mon tableau. Mon code affiche parfaitement la barre de défilement dans Firefox mais pas dans IE8, ni Google Chrome. Dans ces 2 navigateurs elle ne s'affiche pas du tout et toutes mes données s'affichent comme s'ils ne prenaient pas en compte le height que j'ai mis sur le contenu (Tbody) alors qu'il est bien pris en compte sous Firefox.

Si Quelqu'un a une idée, je suis preneur car j'ai beau chercher, je ne trouve pas de solutions. Merci d'avance.
Voici mon code :
Code html : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<table style="width:100%;border:2px">
      <thead style="height:30px">
        <tr>
          <th spry:sort="ch_nom_groupe">Ch_nom_groupe</th>
          <th spry:sort="ch_nom_album">Ch_nom_album</th>
          <th spry:sort="ch_annee_album">Ch_annee_album</th>
          <th spry:sort="ch_genre_album">Ch_genre_album</th>
          <th spry:sort="ch_note_album">Ch_note_album</th>
        </tr>
       </thead>
       <tbody style="height:70px;overflow-x:hidden;overflow-y:scroll">
        <tr spry:repeat="ds6" spry:odd="ligneimpaire" spry:even="lignepaire" spry:hover="lignesurvol" spry:select="pointer">
          <td style="padding-right:10px">{ch_nom_groupe}</td>
          <td style="padding-right:10px">{ch_nom_album}</td>
          <td style="padding-right:10px">{ch_annee_album}</td>
          <td style="padding-right:10px">{ch_genre_album}</td>
          <td style="padding-right:10px">{ch_note_album}</td>
        </tr>
        </tbody>
</table>