24/11/2004, 02:09
|
| | Fecha de Ingreso: septiembre-2004
Mensajes: 104
Antigüedad: 20 años, 1 mes Puntos: 0 | |
A ver, mete todo el contenido de la página en una capa (div), y dale a esa capa el siguiente estilo:
#Content {
position:absolute;
left:50%;
top:50%;
width:300px;
height:300px;
margin-left:-150px; /* width/2 */
margin-top:-150px; /* height/2 */
border:1px dashed #333;
background-color:#eee;
padding:10px;
}
/* The right value for Mozilla */
body>#content {
margin-left:-160px;
margin-top:-160px;
} |