“Cómo el centro div en CSS” Código de respuesta

centrar un div CSS

.center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
Puzzled Penguin

Centro con CSS

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

Centro Div

center{
            display: block;
            margin-left: auto;
            margin-right: auto;
            width: 50%;
        }
Strange Starling

centrar un 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

Cómo el centro div en CSS

.center{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
Dark_Night45

Cómo centrar Div

  EntireBanner: {
    position: "relative",
    backgroundImage: `url(${bgImage})`,
    backgroundSize: "cover",
    backgroundRepeat: "no-repeat",
    width: "100%",
    height: "800px",
  },
  textBox: {
    position: "absolute",
    top: "50%",
    left: "50%",
    transform: "translate(-50%, -50%)",
  },
Blue Baboon

Respuestas similares a “Cómo el centro div en CSS”

Preguntas similares a “Cómo el centro div en CSS”

Más respuestas relacionadas con “Cómo el centro div en CSS” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código