Skip to content

Instantly share code, notes, and snippets.

@LukeberryPi
Created October 20, 2023 22:16
Show Gist options
  • Save LukeberryPi/4a46517dd167e9d3346899036dec5190 to your computer and use it in GitHub Desktop.
Save LukeberryPi/4a46517dd167e9d3346899036dec5190 to your computer and use it in GitHub Desktop.
how to justify three elements in a container and keep the middle one centered regardless of children size
<div class="flex justify-between">
<div class="flex flex-1 justify-start">huuuuuuuuuuuuge left element</div>
<div class="flex flex-1 justify-center">center element</div>
<div class="flex flex-1 justify-end">right element</div>
</div>
@LukeberryPi
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment