Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 13th, 2012  |  syntax: None  |  size: 0.22 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How to center a flexible box in the document?
  2. display: -moz-box;
  3. -moz-box-orient: horizontal;
  4. -moz-box-pack: center;
  5. -moz-box-align: center;
  6.        
  7. display: box;
  8. box-orient: horizontal;
  9. box-pack: center;
  10. box-align: center;