Achieve horizontal center alignment of elements
P粉268284930
2023-08-21 10:25:54
<p>How to center one div
horizontally inside another div
using CSS? </p>
<pre class="brush:html;toolbar:false;"><div id="outer">
<div id="inner">Foo foo</div>
</div>
</pre>
<p><br /></p>
If you don't want to set a fixed width on the inner
div
, you can try the following:This will make the inner
div
an inline element that can be centered viatext-align
.It's very easy to center a div horizontally and vertically using
flexbox
.