Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/tomkp/flexbox
- Owner: tomkp
- Created: 2016-04-14T09:05:07.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T23:14:59.000Z (almost 2 years ago)
- Last Synced: 2024-04-09T11:22:55.672Z (7 months ago)
- Topics: css, flexbox
- Language: HTML
- Homepage: http://flexbox-forever.surge.sh/
- Size: 1.43 MB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: readme.md
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;
}```