“Centrado elementos CSS” Código de respuesta

Centrado elementos CSS

// add to the parent element
.parent {
	display: grid;
    place-items: center;
}
Handsome Hippopotamus

cómo centrar un div vertical y horizontalmente

.container{	
	margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  	width: /* Define the width here; */
    height: /* Define the height here; */
}

/*You have to define the width and height! */
Cheerful Chimpanzee

cómo centrar horizontal un div en css

#inner {
  width: 50%;
  margin: 0 auto;
}
Hilarious Hare

Respuestas similares a “Centrado elementos CSS”

Preguntas similares a “Centrado elementos CSS”

Más respuestas relacionadas con “Centrado elementos CSS” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código