I don’t know why it’s not correct, please help. Thank you.
Please post your actual code instead of a picture and the like to the challenge you are working on. Thanks
This is my code ::
.bb3 {
width: 10%;
height: 55%;
background-color: var(--building-color3);
background: repeating-linear-gradient(
90deg,
var(--building-color3),
var(--building-color3) 7.5%,
var(--window-color3) 15%
);
}
And this is the question STEP 60 ::
Fill in .bb3
with a repeating-linear-gradient
. Use 90deg
for the direction, your building-color3
for the first two colors, and window-color3
at 15%
for the third. When you don’t specify a distance for a color, it will use the values that makes sense. In this case, the first two colors will default to 0%
and 7.5%
because it starts at 0%
, and 7.5%
is half of the 15%
I think I follow the step but I don’t know why it says mistake: You should use --window-color3
at 15%
for the third color. Thank you.
Can you share the link with us?
I modified your post to include the challenge link.
In the future, please include that so people can help you.
As for your challenge, the problem is here
You weren’t supposed to provide a distance of 7.5%.
That is what the directions say here
When you delete that distance then the test will pass.
Hope that helps!
It’s work! Thank you for your help and kindness.
Mod Edit: SOLUTION REMOVED
It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.
We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.