디자인 레시피/html5&css3

Center Elements Vertically And Horizontally

느낌디자이너 2016. 4. 17. 18:09


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;
}