Skip to content

Instantly share code, notes, and snippets.

@miguelmota
Created October 11, 2017 07:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miguelmota/8dc23f9de9d04ab6abc0e216209ad6f4 to your computer and use it in GitHub Desktop.
Save miguelmota/8dc23f9de9d04ab6abc0e216209ad6f4 to your computer and use it in GitHub Desktop.
CSS fixed width flexbox
.container {
display: flex;
align-items: center;
justify-content: space-between;
}
.container .left {
flex: 0 0 250px;
}
.container .right {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment