Advertisement
Guest User

Ouch!

a guest
Mar 29th, 2020
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.84 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.   <meta charset="UTF-8">
  5.   <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.   <title>Document</title>
  7.   <style>
  8.     body {
  9.       display: flex;
  10.       justify-content: center;
  11.       align-items: center;
  12.       height: 100vh;
  13.     }
  14.  
  15.     .box {
  16.       width: 300px;
  17.       height: 200px;
  18.       border: 1px solid black;
  19.       position: relative;
  20.       z-index: 1;
  21.     }
  22.  
  23.     .box::before {
  24.       content: '';
  25.       display: block;
  26.       width: 100px;
  27.       height: 100px;
  28.       position: absolute;
  29.       left: 50%;
  30.       right: 50%;
  31.       top: -51px;
  32.       transform: translateX(-50%) rotate(45deg);
  33.       border: 1px solid black;
  34.       background-color: cornflowerblue;
  35.       z-index: 2;
  36.     }
  37.   </style>
  38. </head>
  39. <body>
  40.   <div class="box">
  41.  
  42.   </div>
  43. </body>
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement