Created
April 14, 2011 13:30
-
-
Save matthewcrist/919478 to your computer and use it in GitHub Desktop.
Flexible box model orient
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
/* Places children side by side */ | |
-webkit-box-orient: horizontal; | |
-moz-box-orient: horizontal; | |
box-orient: horizontal; | |
/* Places children in block layout */ | |
-webkit-box-orient: vertical; | |
-moz-box-orient: vertical; | |
box-orient: vertical; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment