Ver Mensaje Individual
  #8 (permalink)  
Antiguo 21/11/2008, 10:46
Avatar de Fernand0
Fernand0
 
Fecha de Ingreso: septiembre-2005
Ubicación: Buenos Aires
Mensajes: 610
Antigüedad: 19 años, 2 meses
Puntos: 19
Respuesta: Centrar <div...> de acuerdo a pantalla

Código HTML:
<style>
* { margin: 0; }
html, body { width: 100%; height: 100%; }
</style> 
Código javascript:
Ver original
  1. function mau()
  2. {
  3. var Div=document.getElementById('div');
  4. Div.style.position='fixed';
  5. Div.style.display='block';
  6.  
  7. var w=parseInt(Div.style.width);
  8. var h=parseInt(Div.style.height);
  9.  
  10. Div.style.left=(document.body.offsetWidth/2-(w/2))+'px';
  11. Div.style.top=(document.body.offsetHeight/2-(h/2))+'px';
  12. }

si lo queres hacer con JS... es asi... necesitas tener el body obviamente con una medida 100%...

si "simplemente" queres que este en el centro.. usa CSS como te dice genuine_carlosV2