Centrar un div con POSITION y TRANSFORM de CSS
HTML
<div>DIV centrado</div>
CSS
body{
background:#f9e79f;
}
div{
/* css centrar */
position : absolute;
top : 50%;
left : 50%;
transform: translate(-50%,-50%);
/* css más estilos */
width:200px;
height:200px;
background:#9b59b6;
padding:20px;
border:2px solid #7d3c98;
color:#4a235a;
}
Deja tu comentario