Menu
×
×
Correct!
Exercise:Give the <div> element a rounded corner (25px radius) on the bottom left side. Hint: Use the border-radius shorthand, or border-bottom-left-radius, property. |
Edit This Code:
x
<html> <head> <style> div { background: #73AD21; padding: 20px; width: 200px; } </style> </head> <body> <div>This is a div element. It has some text.</div> </body> <!-- Mirrored from www.w3schools.com/css/exercise.asp?filename=exercise_css3_borders2 by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:35:40 GMT --> </html> Result:
|
Correct Code:
xxxxxxxxxx Result:
|