“Texto médio CSS” Respostas de código

centro com css

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

Como centralizar uma div vertical e 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

Texto médio CSS

text-align: center;
Troubled Turkey

Respostas semelhantes a “Texto médio CSS”

Perguntas semelhantes a “Texto médio CSS”

Mais respostas relacionadas para “Texto médio CSS” em HTML

Procure respostas de código populares por idioma

Procurar outros idiomas de código