Skip to content

Instantly share code, notes, and snippets.

@matthewcrist
Created April 14, 2011 13:30
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 matthewcrist/919478 to your computer and use it in GitHub Desktop.
Save matthewcrist/919478 to your computer and use it in GitHub Desktop.
Flexible box model orient
/* 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