Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/04/2003, 01:36
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 9 meses
Puntos: 772
Hola, ej1236.

A ver si es esto lo que buscas:
Código PHP:
<html>

<
head>
<
script>
function 
centrar() {
    
an=document.body.clientWidth;
    
al=document.body.clientHeight;
    
iz=(an-200)/2;
    
ar=(al-100)/2
    document
.getElementById("capa").style.left=iz;
    
document.getElementById("capa").style.top=ar;
}
</script>
</head>

<body onLoad="centrar()" onResize="centrar()">
<div id ="capa" style="position:absolute; width:200; height:100; border:1px solid green">
Este texto está centrado.
</div>
</body>

</html> 
Saludos,