Hacker News new | ask | show | jobs
by ramoz 852 days ago
for the uninitiated:

<div style="display:flex;justify-items:center;align-items:center">

    <div>I'm centered</div>
</div>
1 comments

That doesn't work on Codepen.io, in the latest Chrome.

Back to the drawing board.

<div style="display:flex;justify-content:center;align-items:center;">

    <div>I'm centered</div>
</div>

* I wrote the original without testing but it is justify-content, not justify-items... oops