“So zentrieren Sie ein Inline -Blockelement” Code-Antworten

Inline -Block -Align Center

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

.child {
  display: inline-block;
}
Selfish Swan

So zentrieren Sie ein Inline -Blockelement

  display: inline-block;
  position: relative;
  /* Move the element to the right by 50% of the container's width */
  left: 50%; 
  /* Calculates 50% of the element's width, and moves it by that */ 
  /* amount across the X-axis to the left */
  transform: translateX(-50%);
Depressed Dove

Ähnliche Antworten wie “So zentrieren Sie ein Inline -Blockelement”

Fragen ähnlich wie “So zentrieren Sie ein Inline -Blockelement”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen