×
×
Correct!
Set a linear gradient background for the <div> element, going from right to left.
<style>
div {
background-image: linear-gradient(@(7), white, green);
}
</style>
<body>
<div style="height:200px"></div>
</body>
<style>
div {
background-image: linear-gradient(to left, white, green);
}
</style>
<body>
<div style="height:200px"></div>
</body>
Not CorrectClick here to try again. Correct!<style> div { background-image: linear-gradient(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?