Centering - Using Flexbox
~10 mins
Centering - Using Flexbox
<div class="container">
<img src="http://lorempixel.com/400/200" />
</div>
html, body, .container {
height: 100%;
}
.container {
display: flex;
justify-content: center; /* horizontal center */
}
img {
align-self: center; /* vertical center */
}
- Example 2
html, body {
height: 100%;
}
body {
display: flex;
justify-content: center; /* horizontal center */
align-items: center; /* vertical center */
}
- See Dynamic Vertical and Horizontal Centering under the Flexbox documentation for more details on flexbox and
what the styles mean.