mramine364

Vertical Center

Jan 17th, 2016
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.51 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <meta charset="UTF-8">
  4.     <title>Vertical Center</title>
  5. </head>
  6. <style>
  7.     body{
  8.         margin: 0;
  9.     }
  10.     a{
  11.         text-decoration: none;
  12.     }
  13.     .container{
  14.         border: solid 1px black;
  15.     }
  16.     /* start */
  17.     .container{
  18.         height: 300px;
  19.         position: relative;
  20.     }
  21.    
  22.     .valign{
  23.         position: absolute;
  24.         top: 50%;
  25.         left: 50%;
  26.         transform: translateX(-50%) translateY(-50%);
  27.     }
  28.  
  29. </style>
  30. <body>
  31.     <div class="container">
  32.         <a href="#" class="valign">"Hello Programmers" - LuffyX</a>
  33.     </div>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment