| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| .box { | |
| width: 400px; | |
| height: 200px; | |
| margin: 10px; | |
| border: 10px solid blue; | |
| border-radius: 110px; | |
| box-shadow: black 0px 0px 0px 29.77px inset; | |
| clip-path: inset(40px calc(100% - 60px) calc(100% - 60px) 40px); | |
| transform-origin: top left; | |
| transform: scale(3); | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="box"></div> | |
| </body> | |
| </html> |