“wie man horizontal in CSS zentriert” Code-Antworten

Mitte dival horizontal und vertikal

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

horizontal zentrieren

/*<div class="content">This works with any content</div>*/
.content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
Thowhidul Islam

Wie man ein Element horizontal zentriert

You can apply this CSS to the inner <div>:

#inner {
  width: 50%;
  margin: 0 auto;
}
Of course, you don't have to set the width to 50%. Any width less than the containing <div> will work. The margin: 0 auto is what does the actual centering.

If you are targeting Internet Explorer 8 (and later), it might be better to have this instead:

#inner {
  display: table;
  margin: 0 auto;
}
It will make the inner element center horizontally and it works without setting a specific width.

Working example here:

#inner {
  display: table;
  margin: 0 auto;
  border: 1px solid black;
}

#outer {
  border: 1px solid red;
  width:100%
}
<div id="outer">
  <div id="inner">Foo foo</div>
</div>
shafeeque

wie man horizontal in CSS zentriert

.content {
	 position: absolute;
     text-align: center;
     top: 50%;
}
Timur Turbil

Wie man horizontales Zentrum eines Div in CSS zentriert

#inner {
  width: 50%;
  margin: 0 auto;
}
Hilarious Hare

Mitte divy

.inner{
margin: 0 auto;
}
Zarden

Ähnliche Antworten wie “wie man horizontal in CSS zentriert”

Fragen ähnlich wie “wie man horizontal in CSS zentriert”

Weitere verwandte Antworten zu “wie man horizontal in CSS zentriert” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen