| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| .clipping { | |
| margin: 50px; | |
| width: 300px; | |
| height: 200px; | |
| border: 5px solid black; | |
| border-radius: 50px; | |
| border-bottom-right-radius: 100px; | |
| padding: 20px; | |
| background-color: green; | |
| background-clip: content-box; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="clipping"></div> | |
| </body> | |
| </html> |