Skip to content

Instantly share code, notes, and snippets.

@robjtede
Last active May 17, 2018 04:23
Show Gist options
  • Save robjtede/0fc1b5fcfeeec90ec3cd1be82351c75b to your computer and use it in GitHub Desktop.
Save robjtede/0fc1b5fcfeeec90ec3cd1be82351c75b to your computer and use it in GitHub Desktop.
CSS Snippets
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
align-items: stretch;
display: grid;
grid-template-rows: auto auto;
grid-template-columns: auto auto;
grid-template-areas:
'title total'
'size total';
justify-content: space-between;
align-items: stretch;
display: block;
height: auto;
max-width: 100%;
max-height: 100%;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment