Prev Demo
CSS3
>
Border-Bottom-Left-Radius Property
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <style> p { border-bottom-left-radius:1em; background-color:pink; border: 3px solid; border-color:black; padding:4px 7px 2px 4px; } div { background-color:seashell; border: 3px solid; border-color:black; padding:4px 7px 2px 4px; } </style> <p> This is the element with 'border-bottom-left-radius' property. </p> <div> This is the element with out 'border-bottom-left-radius' property. </div> </body> </html>
Note: We DO NOT save your trial code in our database.
Output