PNLdev
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
En
English
فارسی
En
English
فارسی
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
Run
<!DOCTYPE html> <html> <head> <style> #example1 { border: 10px solid green; padding: 15px; border-bottom-right-radius: 35px; } #example2 { border: 15px solid blue; padding: 20px; border-bottom-right-radius: 50px 20px; } </style> </head> <body> <h1>border-bottom-right-radius property example</h1> <h2>border-bottom-right-radius: 35px:</h2> <div id="example1"> <p>The border-bottom-right-radius property defines the radius of the bottom-right corner.</p> </div> <h2>border-bottom-right-radius: 50px 20px:</h2> <div id="example2"> <p>If two values are set; the first one is for the bottom border, the second one for the right border.</p> </div> </body> </html>