Usamos cookies para medir audiência e melhorar sua experiência. Você pode aceitar ou recusar a qualquer momento. Veja sobre o iMasters.
Boa tarde pessoal!
Não tenho certeza se é aqui mesmo que posto... mas por usar CSS e diagramação de páginas vou arriscar! =D
Consegui um script na internet para manter uma div sempre fixa no canto inferior direito do navegador...
parece que usa javascript para funcionar o dinamismo...
Acontece o seguinte... em todos os navegadores melhores (IE7, IE8, FFOX2, FFOX3, CHROME) funcionou normalmente, só que no maldito IE6 não funciona direito!!
ele dá espaçamento da margem, tanto direita quanto inferior, além de criar uma barra de rolagem horizontal!!!
o código que usei é o seguinte:
<style type="text/css">
#fixme {
/* Netscape 4, IE 4.x-5.0/Win and other lesser browsers will use this */
position: absolute;
right: 0;
bottom: 0;
z-index:10;
}
body > div#fixme {
/ used by Opera 5+, Netscape6+/Mozilla, Konqueror, Safari, OmniWeb 4.5+, iCab, ICEbrowser /
position: fixed;
}
</style>
<!--[if gte IE 5.5]>
<![if lte IE 7]>
<style type="text/css">
div#fixme {
/ IE5.5+/Win - this is more specific than the IE 5.0 version /
right: auto; bottom: auto;
left: expression( ( -20 - fixme.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
top: expression( ( -10 - fixme.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}
</style>
<![endif]>
<![endif]-->
tudo dentro da tag head....
no CHROME:
/applications/core/interface/imageproxy/imageproxy.php?img=http://img136.imageshack.us/img136/656/semttulowk6.jpg&key=c57e3f6036d23b5625885c533d26042c62a4daf08ba7a3f439fff005ae94aa33" alt="Imagem Postada" />
no IE6:
/applications/core/interface/imageproxy/imageproxy.php?img=http://img4.imageshack.us/img4/821/cidimage001jpg01c98ba9rt3.jpg&key=6953db90077d822ad1af2a8ba5b5995983415efa13a3d87a659e11ef4600283d" alt="Imagem Postada" />
Carregando comentários...