Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS3 border-top-right-radius property</title> <style> div { padding: 15px; background: #ffb6c1; border: 2px solid #f08080; border-top-right-radius: 20px; } </style> </head> <body> <div>The <code>border-top-right-radius</code> property defines the shape of the bottom-left border corner of an element.</div> <p><strong>Warning:</strong> Internet Explorer 8 and earlier versions don't support the <code>border-top-right-radius</code> property.</p> </body> </html>