“CSS de texto medio” Código de respuesta

Centro con CSS

.parent {
  position: relative;
}
.child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
You'veYeedYourLastHaw

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

CSS de texto medio

text-align: center;
Troubled Turkey

Respuestas similares a “CSS de texto medio”

Preguntas similares a “CSS de texto medio”

Más respuestas relacionadas con “CSS de texto medio” en HTML

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código