“Mitte dival horizontal und vertikal” Code-Antworten

Mitte dival horizontal und vertikal

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

CSS -Zentrum vertikal und horizontal

body {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
/* to make "align-items: center" work: use "min-height: 100vh;"
100vh = 100% Viewport Height */
Horrible Hamerkop

CSS -Zentrum horizontal und vertikal

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

zentrale Ausrichtung dival und horizontal CSS ausrichten

.parent{
	display: flex;
    justify-content: center;
  	align-items: center;
}
/* Child elements will be perfectly centered automatically */
Glorious Gnat

Zentrieren Sie in CSS alles horizontal und vertikal

.center {
  display: flex;
  align-items: center;
  justify-content: center;       
}
Stephen Oj

wie man einen Dival und horizontal zentriert

.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

Ähnliche Antworten wie “Mitte dival horizontal und vertikal”

Fragen ähnlich wie “Mitte dival horizontal und vertikal”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen