×
×
Correct!
Give the div element a rounded corner on the bottom left side.
<style>
div {
background: red;
@(25): 10px;
}
</style>
<body>
<div>This is a div element. It has some text.</div>
</body>
<style>
div {
background: red;
border-bottom-left-radius: 10px;
}
</style>
<body>
<div>This is a div element. It has some text.</div>
</body>
Not CorrectClick here to try again. Correct!<style> div { background: red;w3exercise_input_no_0: 10px; } </style> <body> <div>This is a div element. It has some text.</div> </body> |
This will reset the score of ALL 138 exercises.
Are you sure you want to continue?