Skip to content

Instantly share code, notes, and snippets.

@exarcheia-web
exarcheia-web / dabblet.css
Last active November 29, 2016 18:15
Flexbox slightly more advanced example
/* Flexbox slightly more advanced example */
body { margin: 0; }
.canvas {
background: hotpink;
width: 100vw;
height: 100vh;
display: flex; /* This does all the magic!!! */
justify-content: flex-end; /* position items along the MAIN axis - default: horizontal */