[Resolvido] Remover padding da parte de dentro do iframe?
RESOLVIDO
Quero tirar o paddding padrão da parte interna de um iframe
Segue minhas tentativas:
index.html
<div id="iframe"><iframe name="content" frameBorder=0 scrolling=no src="inicio.html" width="680" height="450"></iframe></div>
style.css
div#iframe_content {
height: 450px;
width: 680px;
position:absolute;
left: 50px;
top: 80px;
z-index: 110;
}
div#iframe {
height: 450px;
width: 680px;
padding:0px;
margin:0px;
position:absolute;
left: 57px;
top: 80px;
z-index: 100;
}
conteudo.html
<div id="iframe_content"><img src="images/exemplo.jpg" width="680" height="450" alt="Imagem" /></div>
-- EDIT --
RESOLVIDO
Adicionei MARGINWIDTH="0", ficando:
index.html
<div id="iframe"><iframe name="content" MARGINWIDTH="0" frameBorder=0 scrolling=no src="inicio.html" width="680" height="450"></iframe></div>
Discussão (0)
Carregando comentários...