Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Center DIV</title>
- <style>
- .center {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- width: 500px;
- height: 500px;
- padding: 10px;
- border: 5px solid #888;
- background-color: #0ff;
- }
- </style>
- </head>
- <body>
- <div class="center"></div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment