| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta name="fuzzy" content="maxDifference=0-64; totalPixels=0-98"> | |
| <style> | |
| .bordered { | |
| margin: 50px; | |
| border: 100px solid green; | |
| border-bottom: none; | |
| border-radius: 16px; | |
| width: 300px; | |
| height: 100px; | |
| background: linear-gradient(white, black); | |
| } | |
| #obscurer { | |
| position: absolute; | |
| background-color: gray; | |
| top: 140px; | |
| left: 150px; | |
| width: 320px; | |
| height: 120px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="bordered"></div> | |
| <div id="obscurer"></div> | |
| </body> | |
| </html> |