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

Centering an element

By: a guest on Aug 17th, 2012  |  syntax: HTML  |  size: 0.17 KB  |  hits: 16  |  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. <html>
  2. <head>
  3.         <style>
  4.                 #save {
  5.                         text-align: center;
  6.                         vertical-align: middle;
  7.                 }
  8.         </style>
  9. </head>
  10. <body>
  11.         <p id="save">Hello World!</p>
  12. </body>
  13. </html>