Bonsoir,

j'ai mis un code dans un fichier html à part, puis je l'intègre dans mon code principal via une iframe car il contient du js et ne fait pas bon ménage avec un autre script js de la page principal. Mon problème est qu'il y a des scrollbars malgré ce code :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
<iframe src="defilant.html" frameborder="0"
 height="300" scrolling="no" width="600"></iframe>
D'autre part, j'ai beau intégrer ça dans un tableau html :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
  <table>
    <tbody>
      <tr>
        <td width="100"></td>
        <td><iframe src="defilant.html" frameborder="0"
 height="300" scrolling="no" width="600"></iframe></td>
      </tr>
    </tbody>
  </table>
il s'en fiche complètement et je ne peux le mettre où je veux.
Avez une idée pour l'un de ces problèmes ?