my code can’t pass the test, i think my code is right. But it can’t pass.
instruction :
Now you’ll apply a red-to-green gradient along a 90 degree line to the first marker.
First, in the .red CSS rule, set the background property to linear-gradient() , and pass it the value 90deg as the gradientDirection .
my code :
.red {
background: linear-gradient(90deg, red, green);
}
Challenge: Step 50
Link to the challenge: