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