quenerapu

Perfectamente centrado

Mar 6th, 2020
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.54 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.   <meta charset="utf-8">
  5.   <meta name="viewport" content="width=device-width">
  6.   <title>Perfectly centered</title>
  7.   <style>
  8. /*  http://howtocenterincss.com/ */
  9.     .mainDiv{
  10.       width:500px;
  11.       height:300px;
  12.       position:fixed;
  13.       top:50%;
  14.       left:50%;
  15.       transform:translate(-50%,-50%);
  16.       background-color:pink;
  17.       display:flex;
  18.       justify-content:center;
  19.       align-items:center;
  20.     }
  21.   </style>
  22. </head>
  23. <body>
  24.  
  25.   <div class="mainDiv">Centered</div>
  26.  
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment