Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>CENTER 50/50</title>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <style>
- body
- {
- background: whitesmoke;
- }
- p
- {
- padding-left: 30px;
- color: white;
- }
- .center
- {
- width: 600px;
- height: 400px;
- position: fixed;
- left: 50%;
- top: 50%;
- margin-left: -300px;
- margin-top: -200px;
- background: cadetblue;
- }
- </style>
- </head>
- <body>
- <div class="center">
- <p>
- width: 600px;
- </p>
- <p>
- height: 400px;
- </p>
- <p>
- position: fixed;
- </p>
- <p>
- left: 50%;
- </p>
- <p>
- top: 50%;
- </p>
- <p>
- margin-left: -300px;
- </p>
- <p>
- margin-top: -200px;
- </p>
- <p>
- background: cadetblue;
- </p>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement