×
×
Correct!
Set a linear gradient background for the <div> element, going from the top to bottom, transitioning from "white" to "green".
<style>
div {
background-image: linear-gradient(white, green);
}
</style>
<body>
<div style="height:200px"></div>
</body>
<style>
div {
background: linear-gradient(white, green);
}
</style>
<body>
<div style="height:200px"></div>
</body>
Not CorrectClick here to try again. Correct!<style> div {: (white, green); } </style> <body> <div style="height:200px"></div> </body> |