“Como centralizar uma div” Respostas de código

Como centralizar uma div

/* Assume the div has a class of "center"
   The below would center it horizontally
*/
.center {
	margin-left: auto;
    margin-right: auto; 
}

/* There is a shorthand and it is given below */
.center {
	margin: 0 auto; 
}
Wissam

Como centralizar uma div

.div-object {
	display: grid;
    place-items: center;
}
MikaKC

Como centralizar uma div

div {
    width: 100px;
    height: 100px;
    background-color: red;
    
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    
    margin: auto;
}
Wandering Walrus

Como centralizar uma div

.center {
  margin: auto;
  width: 50%;
  border: 3px solid green;
  padding: 10px;
}
Matteoweb

Como centralizar uma div

.center { 
	display: grid;
    place-items: center;
}
Average Alligator

Como centralizar uma div

.div {
	width: 80%;
    margin: auto;
}
joel2play

Como centralizar uma div

margin:auto
CodeNameNinja

Como centralizar uma div

/*Dude XD

I have the same question

EVERYONE HAS THE SAME QUESTION

EVERYONE
ok here's the code*/
/* Aligns a the content to the center */

.parent {
  text-align: center;
}
vagg

Como centralizar uma div

<center>
  <div> YOUR DIV </div>
</center>
Gorgeous Gemsbok

Como centralizar uma div

<div id="outer">
  <div id="inner">Foo foo</div>
</div>
Sara Gismondi

Respostas semelhantes a “Como centralizar uma div”

Perguntas semelhantes a “Como centralizar uma div”

Mais respostas relacionadas para “Como centralizar uma div” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código