Last active
August 29, 2015 14:26
-
-
Save jaseflow/dc074a87cba42543b6fa to your computer and use it in GitHub Desktop.
Flip me
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <style> | |
| .flip-me-and-space-me-evenly { | |
| display: flex; | |
| flex-direction: row-reverse; | |
| justify-content: space-between; | |
| } | |
| /* Assume there are more styles here to make the boxes blue */ | |
| </style> | |
| <div class="flip-me-and-space-me-evenly"> | |
| <div>1</div> | |
| <div>2</div> | |
| <div>3</div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment