Advertisement
josh_max

CSS Demo for Saxon

Sep 16th, 2012
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.49 KB | None | 0 0
  1. <html><head>
  2.  
  3. <style>
  4.  
  5. body * {
  6.     display: block;
  7. }
  8.  
  9. html,body {
  10.     height: 100%;
  11.     margin: 0;
  12.     padding: 0;
  13.     position: relative;
  14.     width: 100%;
  15. }
  16.  
  17. #title {
  18.     width: 290px;
  19.     text-align: center;
  20.     margin: 0 auto;
  21.     height: 100%;
  22. }
  23.  
  24. #title h1 {
  25.     height: 30px;
  26.     position: absolute;
  27.     text-align: center;
  28.     top: 40%;
  29. }
  30.  
  31. </style>
  32.  
  33.  
  34.  
  35. </head>
  36.  
  37. <body>
  38.  
  39.     <div id="title">
  40.         <h1>NOW REBUILDING</h1>
  41.     </div>
  42.  
  43.  
  44.  
  45. </body>
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement