디자인 레시피/html5&css3
Center Elements Vertically And Horizontally
느낌디자이너
2016. 4. 17. 18:09
Quick Tip: The Simplest Way To Center Elements Vertically And Horizontally https://t.co/0JuOMJj8kP
— Tutorialzine (@Tutorialzine) April 16, 2016
The HTML
<div class="container">
<!--// Any content in here will be centered.-->
<img src="fireworks.jpg" alt="fireworks">
</div>
The CSS
.container{
display: flex;
justify-content: center;
align-items: center;
}