supprimer les scrollbars d'une iframe
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:
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:
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 ?