“Mitteltext CSS” Code-Antworten

Zentrum mit CSS

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

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

Mitteltext CSS

text-align: center;
Troubled Turkey

Ähnliche Antworten wie “Mitteltext CSS”

Fragen ähnlich wie “Mitteltext CSS”

Weitere verwandte Antworten zu “Mitteltext CSS” auf HTML

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen