Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <style>
- .container {
- background-color: red;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 250px;
- height: 250px;
- }
- .box {
- border: 1px solid #FFFFFF;
- background-color: yellow;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="box">
- <span class="text">Ciao</span>
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement