Skip to content

Instantly share code, notes, and snippets.

@Andaeiii
Last active August 15, 2022 08:33
Show Gist options
  • Save Andaeiii/c7ff9b9c39881bd44d97a87b302381ac to your computer and use it in GitHub Desktop.
Save Andaeiii/c7ff9b9c39881bd44d97a87b302381ac to your computer and use it in GitHub Desktop.
How to make a flex item fit into any given space, this one trick might help solve 90% of your flex issues... know when to use display:flex and display: flexbox...
.parent{
display:flex;
flex-direction:column;
}
.child{
flex:1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment