- html>
- <html lang="en">
-
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Centered Elementtitle>
- <style>
- body {
- margin: 0;
- padding: 0;
- }
-
- .container {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100vh;
- }
-
- .element {
- width: calc(100vw - 20px);
- height: calc((100vw - 20px) * 0.5);
- background-color: pink;
- display: flex;
- justify-content: center;
- align-items: center;
- }
-
- .element span {
- font-size: 20px;
- }
- style>
- head>
-
- <body>
- <div class="container">
- <div class="element">
- <span>Aspan>
- div>
- div>
- body>
-
- html>