HTML CSS examples for CSS:Quiz
Give the <div> element a rounded corner (25px radius) on the bottom left side.
<!DOCTYPE html> <html> <head> <style> div {<!-- w w w. ja v a2s. c o m--> border-bottom-left-radius: 25px; background: #73AD21; padding: 20px; width: 200px; } </style> </head> <body> <div>This is a div element. It has some text.</div> </body> </html>