CSS Vertical Center with Flexbox

By  on  

I'm 31 years old and feel like I've been in the web development game for centuries.  We knew forever that layouts in CSS were a nightmare and we all considered flexbox our savior.  Whether it turns out that way remains to be seen but flexbox does easily solve a problem CSS has had for far too long:  CSS vertical centering.  Let me show you how easy it is!

Vertical centering requires a parent and children elements...

<div class="flexbox-container">
	<div>Blah blah</div>
	<div>Blah blah blah blah blah ...</div>
</div>

...but only the parent element needs CSS properties set for the vertical centering of child elements:

.flexbox-container {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-ms-flex-align: center;
	-webkit-align-items: center;
	-webkit-box-align: center;

	align-items: center;
}

Aside from the vendor prefixes, that is some simple CSS!  Vertical centering without flexbox is hopeful at best so it's encouraging that the future of CSS layouts will make this task easy.  I'm still not sold on flexbox solving all of the web world's layout problems but solving vertical centering is quite an asset.

Recent Features

  • By
    CSS Animations Between Media Queries

    CSS animations are right up there with sliced bread. CSS animations are efficient because they can be hardware accelerated, they require no JavaScript overhead, and they are composed of very little CSS code. Quite often we add CSS transforms to elements via CSS during...

  • By
    Create a CSS Flipping Animation

    CSS animations are a lot of fun; the beauty of them is that through many simple properties, you can create anything from an elegant fade in to a WTF-Pixar-would-be-proud effect. One CSS effect somewhere in between is the CSS flip effect, whereby there's...

Incredible Demos

  • By
    MooTools Fun with Fx.Shake

    Adding movement to your website is a great way to attract attention to specific elements that you want users to notice. Of course you could use Flash or an animated GIF to achieve the movement effect but graphics can be difficult to maintain. Enter...

  • By
    jQuery Comment Preview

    I released a MooTools comment preview script yesterday and got numerous requests for a jQuery version. Ask and you shall receive! I'll use the exact same CSS and HTML as yesterday. The XHTML The CSS The jQuery JavaScript On the keypress and blur events, we validate and...

Discussion

  1. Two words: Mind blown!

    I was just saying that despite being a developer for many years now, I still find it hard to vertical align anything. It shouldn’t be that hard!!! I’m looking forward to trying this out!

    Thanks!

  2. I’m still a bit confused about the behavior of the children (if one of them has a fixed width but the other one doesn’t, then the width of the first one isn’t really properly applied for example), but I haven’t looked into the whole flexbox thing enough so I’m sure that’s normal. Regardless, this example is already quite helpful for a bunch of situations.

  3. Remind me, what versions of IE is this (flex-box) supported back to? Thanks

  4. Answered my own question. Looks like it is only supported back to IE10 and even their it is partially supported using the -ms- prefix.

  5. I don’t see any mentions of the browser support. After a quick test, it works in Firefox, Chrome, and IE10+.

  6. Great post… regarding flexbox maybe this can help you:
    http://codepen.io/hicTech/pen/emvMBw

  7. Douwe

    Have been waiting for this for years! No more margin-top or padding nightmares! Thanks.

  8. undercover css cop
    .container { 
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate3d(-50%,-50%,0);
    }
    
  9. rud

    i’m not a big fan of position: absolute; and transform(3d): translateY();
    some browsers still support transform(3d) poorly..
    i’m sticking to dispay: table; and display: table-cell; for now..
    so i sure hope flexbox will become an adopted standard.. fast..

  10. Yeah I would avoide translate3d positioning… some browsers put your elements on a half pixel rendering your UI blurry… mainly because the way translated elements are painted to screen is different. :(

  11. Ali

    Do the elements in HTML have to be in DIVs? Can’t they be in HTML5 articles?

  12. emerson

    vertical align in flexbox is somewhat complicated because there are two modes for vertical-align, one for in-line vertical align and the other for in-container vertical-align.

    check the “Cross Align” and “Multi Align” panel in this flexbox generator to see the effect:
    http://loading.io/flexbox/

  13. The odd thing for me is that when I copy and paste the html and css into an editor and launch the file it’s not working. Am I missing something?

Wrap your code in <pre class="{language}"></pre> tags, link to a GitHub gist, JSFiddle fiddle, or CodePen pen to embed!