Menu
×
×
Correct!
Exercise:Set a radial gradient background for the <div> element, transitioning from "white" to "green", in a circle shape.
<style>
div {
background-image: radial-gradient(@(6), @(5), @(5));
}
</style>
<body>
<div style="height:200px"></div>
</body>
<style>
div {
background-image: radial-gradient(circle, white, green);
}
</style>
<body>
<div style="height:200px"></div>
</body>
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 138 exercises.
Are you sure you want to continue?