Eso deberías preguntarlo en el foro de
CSS o en el
(X)HTML Aqui somos la rama dura de la programación web
Pero igual te sirve estos "pasos" que vi en una página web:
Cita:
Step 1
Add this style type to the page with the iframe:
<style type="text/css">
<!--
iframe {
overflow-x: hidden;
}
-->
</style>
Step 2
Make sure the iframe scrolling property is set to scrolling=yes
Step 3
To help ensure the framed content will fit cleanly inside without additional html elements (like tables and such), use this style property in the iframe content page:
<style type="text/css">
<!--
body {
width:98%;
}
-->
</style>
Step 4
Make sure the doctype is set properly... I use this tag:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
De aqui
Es cosa más de diseño.
Un saludo