Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tomkp/flexbox

I ♥ Flexbox. Forever.
https://github.com/tomkp/flexbox

css flexbox

Last synced: about 1 month ago
JSON representation

I ♥ Flexbox. Forever.

Awesome Lists containing this project

README

        

# Flexbox Forever

[I ♥ Flexbox. Forever.](http://flexbox-forever.surge.sh/)

Obviously this comes with caveats.

My intention is just to demonstrate how a little bit of flexbox can go a long way.

```

.root {
height: 100vh;
width: 100vw;
}

.column {
display: flex;
flex-direction: column;
}

.row {
display: flex;
flex-direction: row;
}

.flex {
flex: 1;
min-width: 0;
}

```