Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

edu.mota

[Resolvido] Problema css no chrome e safari

Recommended Posts

Fala galera imaster,

 

Estou com um problema para alinhar um rodapé ao bottom no safari e chrome, nos outros browser funciona corretamente, porem

no safari e chrome esta aparecendo um espaço com se fosse um margin-bottom

 

segue o css

@charset "utf-8";
/* CSS Document */
html, body, div, form, fieldset, legend, label {
   display:block;
margin: 0;
padding: 0;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
th, td {
text-align: left;
vertical-align: top;
}
h1, h2, h3, h4, h5, h6, th, td, caption {
font-weight:normal;
}
img {
border: 0;
}
body {
 background-color:#000000;
 font-family:Verdana, Arial, Helvetica, sans-serif;
 font-size:12px;
 margin:0px;
 text-align:center;
 height:100%;
 min-width:1082px;
}
#body {
 background: url(../img/bg66.jpg) center top repeat-y;
 height:100%;
 width:auto;
 position:relative;
}
#top{
 background:url(../img/topo.jpg) top center repeat-x;
}
#banner{
 text-align:center;
}
#top_fundo_menu {
 background: url(../img/topo_moldura.png) top center no-repeat;
 height:280px;
 width:auto;
 top:0px;
}
#menu {
 text-align:center;
 padding:20px;
}
#bf_menu {
 background:url(../img/base_moldura.png) bottom center no-repeat;
 height:auto;
 width:auto;
}
#top_fundo {
 background:url(../img/topo_moldura.png) center top no-repeat;
 height:100px;
 width:auto;
 margin-top:11px;  
}
#conteudo {
 width:1082px;
 min-width:1082px;
}
#conteudo_mostrar {
 font-size:12px;
 color:#FFFFFF;
 margin-left:50px;
 margin-right:50px;
 width:1005px;
 height:auto;
}
#rodape {
 background:url(../img/base.png) bottom center no-repeat;
 }
#texto {
 bottom:0px;
} 
#textorodapé {
 height:15px;
 margin-left:35%;
 padding-top:82px;  
 padding-bottom:50px;
 font-size:12px;
 color:#FFFFFF;
}


Compartilhar este post


Link para o post
Compartilhar em outros sites

resolvido

 

alterações no css

#rodape {
 position:relative;
 background:url(../img/base.png) bottom center no-repeat;
 height:150px;
 margin-bottom:0px;
 min-width:1082px;
}
#texto {
 position:absolute;
 margin-left:45%;
 bottom:0px;
 width:1082px;
 min-width:1082px;
} 
#textorodapé {
 position:relative;
 text-align:right;
 height:15px;
 padding-top:82px;  
 padding-bottom:45px;
 font-size:12px;
 color:#FFFFFF;
 width:50%;
}

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.