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

Untitled

By: a guest on Sep 15th, 2012  |  syntax: None  |  size: 0.38 KB  |  hits: 6  |  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. /**
  2.  * Simple CSS centering (centering text + tall image inside a div)
  3.  */
  4. body {
  5.         margin: 0;
  6.         padding: 5% 1em;
  7. }
  8. div {
  9.         min-width: 320px;
  10.         border: dashed 1px #ccc;
  11.         text-align: right;
  12. }
  13. p {
  14.         width: 25%;
  15.         margin: 0;
  16.         padding-right: 12px;
  17.         display: inline-block;
  18.         text-align: left;
  19.         vertical-align: middle;
  20. }
  21. img {
  22.         width: 70%;
  23.         margin: 0;
  24.         max-width: 400px;
  25.         vertical-align: middle;
  26. }