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: 5px solid green; padding: 15px; border-end-end-radius: 35px; } #example2 { border: 10px solid blue; padding: 20px; border-end-end-radius: 50px 20px; } </style> </head> <body> <h1>border-end-end-radius property example</h1> <h2>border-end-end-radius: 35px:</h2> <div id="example1"> <p>The border-end-end-radius property defines the radius of the corner in the end of block and inline directions.</p> </div> <h2>border-end-end-radius: 50px 20px:</h2> <div id="example2"> <p>If two values are set; the first one is for the end in the block direction, and the second one is for the end in the inline direction.</p> </div> </body> </html>