Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialWilliam McManus
14,819 PointsCan not get Skill Check to accept Gradient code.
I am stuck on the 2nd step on the Gradient Skill Check. It keeps asking me to use a background-image propert, which I think I am. Please help!
.main-header {
background: blue;
background-image: linear-gradient(#000, #fff);
}
thanks!
1 Answer
Jonathan Grieve
Treehouse Moderator 91,253 PointsHi William,
The challenge wants you to take a step by step approach to the problem.
When you did task one, all you needed to do was write your selector
.main-header {
}
By the time you get to task 2 all you need is the background-image css property along with it's value, with no parameters passed in.
.main-header {
background-image: linear-gradient();
}
The challenges can be very unforgiving it, so only give it the answers it specifically asks for. :-) good luck!
jessicawynn2
7,971 Pointsjessicawynn2
7,971 PointsThis was very helpful! I misunderstood the first question which kept causing me to get the second one wrong.